Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Surface.of[Int] after Surface.of[1] returns Surface.of[Object] #3813

Open
ikeyan opened this issue Feb 6, 2025 · 0 comments
Open

Surface.of[Int] after Surface.of[1] returns Surface.of[Object] #3813

ikeyan opened this issue Feb 6, 2025 · 0 comments
Labels

Comments

@ikeyan
Copy link

ikeyan commented Feb 6, 2025

Surface.of[1] // Object
Surface.of[Int] // Object
Surface.of[Seq[Int]].toString() == "Seq[Object]"

// All of these return Object if run in this order
Surface.of[1.0]
Surface.of[Double]

Surface.of['a']
Surface.of[Char]

Surface.of[true]
Surface.of[Boolean]

This happens because fullTypeNameOf returns the same key for 1 and Int, and genericSurfaceFactory returns Object for 1.

@xerial xerial added the bug label Feb 7, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants