summaryrefslogtreecommitdiff
path: root/test/files/pos/bug151.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/bug151.scala')
-rw-r--r--test/files/pos/bug151.scala6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/files/pos/bug151.scala b/test/files/pos/bug151.scala
new file mode 100644
index 0000000000..86667b49f7
--- /dev/null
+++ b/test/files/pos/bug151.scala
@@ -0,0 +1,6 @@
+abstract class Foo {
+ type T;
+ def foo(a: T): Int = 0;
+ val foo: Foo = null;
+ def a: foo.T = a;
+}