-
Notifications
You must be signed in to change notification settings - Fork 68
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
Unable to get a surface of a class with a protected constructor in Scala 3 #3419
Comments
Package private constructor has the same issue: object Obj {
class Q private[Obj] {}
}
Surface.of[Obj.Q]
|
OndrejSpanel
changed the title
Unable to get surface of a class which parameter uses a protected constructor in Scala 3
Unable to get a surface of a class with a protected constructor in Scala 3
Feb 27, 2024
OndrejSpanel
added a commit
to OndrejSpanel/airframe
that referenced
this issue
Feb 28, 2024
OndrejSpanel
added a commit
to OndrejSpanel/airframe
that referenced
this issue
Feb 28, 2024
xerial
added a commit
that referenced
this issue
Feb 28, 2024
…cess (#3423) Starting with tests - I hope I will be able to implement the fix as well. --------- Co-authored-by: Taro L. Saito <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
airframe-surface ver. 24.2.2, Scala 3.3.2
Fails with error
Reduced repro:
There is no issue when the constructor is private.
The text was updated successfully, but these errors were encountered: