mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
19 lines
457 B
Rust
19 lines
457 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
|
|
//~| ERROR the trait bound `(): Project` is not satisfied
|
|
//~| ERROR the trait bound `(): Project` is not satisfied
|
|
//~| ERROR function is expected to take 1 argument, but it takes 0 arguments
|