2024-11-24 17:37:25 -08:00
|
|
|
//@ proc-macro: issue-83510.rs
|
2025-09-26 13:59:06 +02:00
|
|
|
//@ ignore-backends: gcc
|
2021-03-29 17:12:03 +09:00
|
|
|
|
|
|
|
|
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() {}
|