blob: 62206f939949475727ef8db2e6bd3eb4d2e846ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// 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"; }
|