]> git.lizzy.rs Git - rust.git/blob - src/test/ui/proc-macro/issue-83510.rs
Merge commit '98e2b9f25b6db4b2680a3d388456d9f95cb28344' into clippyup
[rust.git] / src / test / ui / proc-macro / issue-83510.rs
1 // aux-build: issue-83510.rs
2
3 extern crate issue_83510;
4
5 issue_83510::dance_like_you_want_to_ice!();
6 //~^ ERROR: cannot find type `Foo` in this scope
7 //~| ERROR: expected trait, found struct `Box`
8 //~| ERROR: cannot find trait `Baz` in this scope
9 //~| ERROR: inherent associated types are unstable
10
11 fn main() {}