about summary refs log tree commit diff
path: root/tests/ui/proc-macro/issue-83510.rs
blob: d49e1867f1d671fabfd28b45ab5aee8f4a77f2dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//@ proc-macro: issue-83510.rs
//@ ignore-backends: gcc

extern crate issue_83510;

issue_83510::dance_like_you_want_to_ice!();
//~^ ERROR: cannot find type `Foo` in this scope
//~| ERROR: expected trait, found struct `Box`
//~| ERROR: cannot find trait `Baz` in this scope
//~| ERROR: inherent associated types are unstable

fn main() {}