]> git.lizzy.rs Git - rust.git/blob - tests/ui/proc-macro/issue-83510.rs
Rollup merge of #106717 - klensy:typo, r=lcnr
[rust.git] / tests / 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() {}