summaryrefslogtreecommitdiff
path: root/test/files/pos/ticket2208.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/ticket2208.scala')
-rw-r--r--test/files/pos/ticket2208.scala8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/files/pos/ticket2208.scala b/test/files/pos/ticket2208.scala
new file mode 100644
index 0000000000..f1a521b14c
--- /dev/null
+++ b/test/files/pos/ticket2208.scala
@@ -0,0 +1,8 @@
+object Test {
+ class A
+
+ class B[X]
+ type Alias[X <: A] = B[X]
+
+ val foo: B[A] = new Alias[A] // check that type aliases can be instantiated
+} \ No newline at end of file