summaryrefslogtreecommitdiff
path: root/test/files/pos/thistypes.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2003-03-12 13:39:16 +0000
committerMartin Odersky <odersky@gmail.com>2003-03-12 13:39:16 +0000
commit9ab44e5b8c934d5bed0efab7aebb10135d21ca30 (patch)
treecc310c66ed9e4a04dc4754247a651e99d18476f3 /test/files/pos/thistypes.scala
parent974cf85afb2e033fc3aa52af1ab6ff174a35a169 (diff)
downloadscala-9ab44e5b8c934d5bed0efab7aebb10135d21ca30.tar.gz
scala-9ab44e5b8c934d5bed0efab7aebb10135d21ca30.tar.bz2
scala-9ab44e5b8c934d5bed0efab7aebb10135d21ca30.zip
*** empty log message ***
Diffstat (limited to 'test/files/pos/thistypes.scala')
-rw-r--r--test/files/pos/thistypes.scala8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/files/pos/thistypes.scala b/test/files/pos/thistypes.scala
new file mode 100644
index 0000000000..4a68ba3e65
--- /dev/null
+++ b/test/files/pos/thistypes.scala
@@ -0,0 +1,8 @@
+trait B {
+ trait I {}
+ def foo: B.this.I;
+}
+
+trait C extends B {
+ def foo: C.this.I;
+} \ No newline at end of file