aboutsummaryrefslogblamecommitdiff
path: root/tests/pending/run/t7242.scala
blob: 318a3b0ed51e9917cda3ebbf1628cde085ce111c (plain) (tree)





































                                                          
                      










                                       
                                             



















                          
class CrashTest {
  def foo = ()
  trait CrashTestTable {
    def cols = foo
  }
  // This was leading to a class between the mixed in
  // outer accessor and the outer accessor of this object.
  object CrashTestTable extends CrashTestTable {
    foo
    cols
  }
}

class CrashTest1 {
  def foo = ()
  class CrashTestTable {
    def cols = foo
  }
  object CrashTestTable extends CrashTestTable {
    foo
    cols
  }
}

class CrashTest2 {
  def foo = ()
  trait CrashTestTable {
    def cols = foo
  }
  object Obj extends CrashTestTable {
    foo
    cols
  }
}

class CrashTest3 {
  def foo = ()

  def meth(): Unit = {
    trait CrashTestTable {
      def cols = foo
    }
    object Obj extends CrashTestTable {
      foo
      cols
    }
    Obj
  }
}

object Test extends dotty.runtime.LegacyApp {
  {
    val c = new CrashTest
    c.CrashTestTable
  }

  {
    val c = new CrashTest1
    c.CrashTestTable
  }

  {
    val c = new CrashTest2
    c.Obj
  }

  {
    val c = new CrashTest3
    c.meth()
  }
}