aboutsummaryrefslogblamecommitdiff
path: root/tests/run/t8888.scala
blob: 0ddc2ae82578dc5a76cc3fde74fb817eab2fef4a (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                                                                    
class C {
  final def resume: Unit = (this: Any) match {
    case x : C => (x: Any) match {
      case y : C =>
        () => (x, y) // used to trigger a ClassFormatError under -Ydelambdafy:method
    }
  }
}

object Test extends dotty.runtime.LegacyApp {
  new C().resume
}