summaryrefslogblamecommitdiff
path: root/test/files/run/t6439.scala
blob: 70a2dbafaf7ac3a3486982c3e8fa7ebee4632d92 (plain) (tree)





















                                                                                                                    
import scala.tools.partest.ReplTest

object Test extends ReplTest {
  def code = """
class A
object A // warn
trait B
object B // warn
object C
object Bippy
class C // warn
class D
def D = 0 // no warn
val D = 0 // no warn
object E
var E = 0 // no warn
object F
type F = Int // no warn
:power
intp("F") // this now works as a result of changing .typeSymbol to .typeSymbolDirect in IMain#Request#definedSymbols
             """
}