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, 20 insertions, 0 deletions
diff --git a/tests/pending/pos/typealiases.scala b/tests/pending/pos/typealiases.scala
new file mode 100644
index 000000000..93d1dce4d
--- /dev/null
+++ b/tests/pending/pos/typealiases.scala
@@ -0,0 +1,20 @@
+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
+}