(no title)
buerkle | 7 months ago
MyType extends String;
void foo(String s);
foo(new MyType()); // is valid
Leading to the original problem. I don't want to represent MyType as a String because it's not.buerkle | 7 months ago
MyType extends String;
void foo(String s);
foo(new MyType()); // is valid
Leading to the original problem. I don't want to represent MyType as a String because it's not.
qcnguy|7 months ago
buerkle|7 months ago