summaryrefslogtreecommitdiff
path: root/test/files/pos/bug1049.scala
diff options
context:
space:
mode:
authorGeoffrey Washburn <geoffrey.washburn@epfl.ch>2008-08-05 10:36:52 +0000
committerGeoffrey Washburn <geoffrey.washburn@epfl.ch>2008-08-05 10:36:52 +0000
commitd850636479c5d1b192c5239d9a5ca7bc0bd82385 (patch)
treeb1ce7b623f5bcb6e3d650799fa6eaf5cd4d59872 /test/files/pos/bug1049.scala
parent74f476f3038eafdc4aab56894dc38cd9a7efe7de (diff)
downloadscala-d850636479c5d1b192c5239d9a5ca7bc0bd82385.tar.gz
scala-d850636479c5d1b192c5239d9a5ca7bc0bd82385.tar.bz2
scala-d850636479c5d1b192c5239d9a5ca7bc0bd82385.zip
All these tests in pending currently pass for me.
Lets see what happens with the commit and nightly builds.
Diffstat (limited to 'test/files/pos/bug1049.scala')
-rw-r--r--test/files/pos/bug1049.scala7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/files/pos/bug1049.scala b/test/files/pos/bug1049.scala
new file mode 100644
index 0000000000..452259b9f8
--- /dev/null
+++ b/test/files/pos/bug1049.scala
@@ -0,0 +1,7 @@
+package bug1049
+
+abstract class Test {
+ type T <: A
+ class A requires T
+ class B requires T extends A
+}