2011-07-11 19:26:40 -05:00
|
|
|
// xfail-stage0
|
|
|
|
// error-pattern:Bind arguments with types containing parameters must be
|
|
|
|
fn main() {
|
2011-07-27 07:19:39 -05:00
|
|
|
fn echo[T](c: int, x: vec[T]) { }
|
2011-07-13 17:44:09 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
let y: fn(vec[int]) = bind echo(42, _);
|
2011-07-11 19:26:40 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
y([1]);
|
|
|
|
}
|