summaryrefslogtreecommitdiff
path: root/test/files/neg/null-unsoundness.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/null-unsoundness.scala')
-rw-r--r--test/files/neg/null-unsoundness.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/neg/null-unsoundness.scala b/test/files/neg/null-unsoundness.scala
index 15dedfbb97..dbb8744597 100644
--- a/test/files/neg/null-unsoundness.scala
+++ b/test/files/neg/null-unsoundness.scala
@@ -7,7 +7,7 @@ class A {
val x: A with D = null
var y: x.T = new C("abc")
}
-object Test extends A with Application {
+object Test extends A with App {
class C { type T = Int; val x = 1 }
type A = C
y = 42