summaryrefslogtreecommitdiff
path: root/test/files/pos/t6245/Foo.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t6245/Foo.scala')
-rw-r--r--test/files/pos/t6245/Foo.scala9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/files/pos/t6245/Foo.scala b/test/files/pos/t6245/Foo.scala
new file mode 100644
index 0000000000..f5f997fbff
--- /dev/null
+++ b/test/files/pos/t6245/Foo.scala
@@ -0,0 +1,9 @@
+import t1.Vis
+
+abstract class Foo extends t1.Base {
+ trait Nested {
+ def crash() {
+ inner
+ }
+ }
+}