7 lines
124 B
Rust
7 lines
124 B
Rust
|
resource r(i: int) {
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
// Even though this looks like a copy, it's guaranteed not to be
|
||
|
let a = r(0);
|
||
|
}
|