blob: 6777febc235a930adbf6d0462ae0cccf72bb77b3 [file] [log] [blame]
class List<T> {
T t;
void set(T t){
this.t = t;
}
}
class Test {
static List x = new List();
static void f (){
x.set("");
}
}
class External{
static List f (){
return Test.x;
}
}