summaryrefslogblamecommitdiff
path: root/test/pending/run/t5258c.scala
blob: 4a656690ba188447cd665953a106c848bb495ca7 (plain) (tree)
1
2
3
4
5
6
7
8
9

                                       
 
                         
         

                                                         
        
 
import scala.reflect.runtime.universe._
import scala.tools.reflect.Eval

object Test extends App {
  reify {
    object E extends Enumeration { val foo, bar = Value }
    println(E.foo)
  }.eval
}