6d86969260
conflict with the new single-line-sugared-inner-doc-comment (`//! ...`).
8 lines
94 B
Rust
8 lines
94 B
Rust
fn f<T: send>(_i: T) {
|
|
}
|
|
|
|
fn main() {
|
|
let i = ~@100;
|
|
f(i); //~ ERROR missing `send`
|
|
}
|