summaryrefslogtreecommitdiff
path: root/test/files/neg/t501.scala
blob: 437ab8f21e895064439e52b6ff62a6e180a24f8e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
object Magic {
  class O[X,Y] {
    abstract class I { type T >: X <: Y; }
    val i: I = null;
    def magic(v: i.T): i.T = v;
  }
  def magic[X,Y](v: X): Y = {
    val o: O[X,Y] = new O();
    o.magic(v);
  }
}

object Test {
  def main(args: Array[String]): Unit = {
    val i: Int = Magic.magic("42");
    Console.println(i);
  }
}