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

Symbol.typeMembers can return empty Symbols on union type aliases #22483

Open
jchyb opened this issue Jan 30, 2025 · 0 comments · May be fixed by #22876
Open

Symbol.typeMembers can return empty Symbols on union type aliases #22483

jchyb opened this issue Jan 30, 2025 · 0 comments · May be fixed by #22876
Labels
area:metaprogramming:reflection Issues related to the quotes reflection API itype:bug

Comments

@jchyb
Copy link
Contributor

jchyb commented Jan 30, 2025

Compiler version

main, 3.3.5, probably any

Minimized code

(minimisation partially stolen from #22472)

@main def Test: Unit = {
  class FooSmall[A, B] { type C; type D }
  class FooLarge[A, B, C] { type D; type E }
  type FooUnion[A, B] = FooSmall[A, B] | FooLarge[A, B, B]

  println(Macro.typeMembers[FooUnion])
}
import scala.quoted.*

object Macro {
  transparent inline def typeMembers[T <: AnyKind]: String = ${ typeMembersImpl[T] }

  def typeMembersImpl[T <: AnyKind: Type](using quotes: Quotes): Expr[String] = {
    import quotes.reflect.*
    Expr(TypeRepr.of[T].typeSymbol.typeMembers.toString)
  }
}

Output

List(val <none>, val <none>, val <none>, val <none>)

Expectation

Return either an empty list, or actually existing Symbols, not sure (probably the second one).

@jchyb jchyb added itype:bug stat:needs triage Every issue needs to have an "area" and "itype" label area:metaprogramming:reflection Issues related to the quotes reflection API and removed stat:needs triage Every issue needs to have an "area" and "itype" label labels Jan 30, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area:metaprogramming:reflection Issues related to the quotes reflection API itype:bug
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant