aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/t2208_pos.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2014-05-07 19:09:52 +0200
committerSamuel Gruetter <samuel.gruetter@epfl.ch>2014-05-20 13:38:49 +0200
commit27081ae59ba5b00b6ae05bb3cdd9c3ff7db0a28e (patch)
treeab350b5ef2d7b9adc29fe715be2efb4681970127 /tests/untried/pos/t2208_pos.scala
parentfb3dba1bac13a755d2304928cbd49e7dde6f1bf9 (diff)
downloaddotty-27081ae59ba5b00b6ae05bb3cdd9c3ff7db0a28e.tar.gz
dotty-27081ae59ba5b00b6ae05bb3cdd9c3ff7db0a28e.tar.bz2
dotty-27081ae59ba5b00b6ae05bb3cdd9c3ff7db0a28e.zip
Tests pos/23xx to 24xx.
Diffstat (limited to 'tests/untried/pos/t2208_pos.scala')
-rw-r--r--tests/untried/pos/t2208_pos.scala8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/untried/pos/t2208_pos.scala b/tests/untried/pos/t2208_pos.scala
deleted file mode 100644
index dd6d686ba..000000000
--- a/tests/untried/pos/t2208_pos.scala
+++ /dev/null
@@ -1,8 +0,0 @@
-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
-}