blob: 8a81911c0bbdf8dfbffb21ae7544ca336ce3566b [file] [log] [blame]
trait Foo<T> {}
macro_rules! bar {
() => { () }
}
fn foo(x: impl Foo<bar!()>) {
let () = x;
//~^ ERROR mismatched types
}
fn main() {}