blob: b785573f2031f310ce7d16fee041b9e9eea1e3ff (
plain)
1
2
3
4
5
6
7
8
9
10
|
// aux-build:resolved-located-at.rs
#[macro_use]
extern crate resolved_located_at;
fn main() {
resolve_located_at!(a b)
//~^ ERROR expected error
//~| ERROR mismatched types
}
|