60ae1590af
And remove support for the old syntax
12 lines
275 B
Rust
12 lines
275 B
Rust
// error-pattern:quux
|
|
fn test00_start(ch: chan_t<int>, message: int) { send(ch, copy message); }
|
|
|
|
type task_id = int;
|
|
type port_id = int;
|
|
|
|
type chan_t<T: send> = {task: task_id, port: port_id};
|
|
|
|
fn send<T: send>(ch: chan_t<T>, -data: T) { fail; }
|
|
|
|
fn main() { fail "quux"; }
|