2012-07-11 12:28:30 -05:00
|
|
|
class yes0 {
|
2012-06-22 15:11:29 -05:00
|
|
|
let x: &uint;
|
|
|
|
new(x: &uint) { self.x = x; }
|
|
|
|
drop {}
|
2012-04-18 23:26:25 -05:00
|
|
|
}
|
|
|
|
|
2012-07-11 12:28:30 -05:00
|
|
|
class yes1 {
|
2012-07-12 11:36:56 -05:00
|
|
|
let x: &self/uint;
|
|
|
|
new(x: &self/uint) { self.x = x; }
|
2012-06-22 15:11:29 -05:00
|
|
|
drop {}
|
2012-04-18 23:26:25 -05:00
|
|
|
}
|
|
|
|
|
2012-07-11 12:28:30 -05:00
|
|
|
class yes2 {
|
2012-07-12 11:36:56 -05:00
|
|
|
let x: &foo/uint; //~ ERROR named regions other than `self` are not allowed as part of a type declaration
|
|
|
|
new(x: &foo/uint) { self.x = x; } //~ ERROR named regions other than `self` are not allowed as part of a type declaration
|
2012-06-22 15:11:29 -05:00
|
|
|
drop {}
|
2012-04-18 23:26:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|