rust/tests/ui/proc-macro/bad-projection.rs
2023-03-14 19:05:21 +00:00

16 lines
262 B
Rust

// force-host
// no-prefer-dynamic
#![crate_type = "proc-macro"]
#![allow(warnings)]
extern crate proc_macro;
trait Project {
type Assoc;
}
#[proc_macro]
pub fn uwu() -> <() as Project>::Assoc {}
//~^ ERROR the trait bound `(): Project` is not satisfied