blob: 8c3617a99da7c45ce6a84dc0477a876049ebd5c1 (
plain)
1
2
3
4
5
6
7
|
// Regresion test for issue #1448 and #1386
fn main() {
#macro[[#apply[f, [x, ...]], f(x, ...)]];
fn add(a: int, b: int) -> int { ret a + b; }
assert (#apply[add, [y, 15]] == 16); //! ERROR unresolved name: y
}
|