aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos/typealiases.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/pos/typealiases.scala')
-rw-r--r--tests/pending/pos/typealiases.scala20
1 files changed, 0 insertions, 20 deletions
diff --git a/tests/pending/pos/typealiases.scala b/tests/pending/pos/typealiases.scala
deleted file mode 100644
index 93d1dce4d..000000000
--- a/tests/pending/pos/typealiases.scala
+++ /dev/null
@@ -1,20 +0,0 @@
-package foo
-
-trait Test[T] {
- type Check[T] = Array[T] => Unit;
- type MyPair[S] = (T, S)
-
- val pair1: (T, Int)
- val pair: MyPair[Int] = pair1
-
- def check(xs: Array[T], c: Check[T]) = c(xs)
- def check2[S](xs: Array[S], c: Check[S]) = c(xs)
-}
-
-object main extends Test[Int] {
- val pair1 = (1,1)
-
- implicit def topair(x: Int): Tuple2[Int, Int] = (x,x)
- val pair2: MyPair[Int] = 1
- val x: Short = 1
-}