blob: 07b7d1ad3f4c6a187cb19b2323e56657c3f2fa92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// test that autoderef of a type like this does not
// cause compiler to loop. Note that no instances
// of such a type could ever be constructed.
enum t = @t; //~ ERROR this type cannot be instantiated
// I use an impl here because it will cause
// the compiler to attempt autoderef and then
// try to resolve the method.
impl methods for t {
fn to_str() -> str { "t" }
}
fn new_t(x: t) {
x.to_str();
}
fn main() {
}
|