blob: 72d6cbb3f14977c5f9387ae128b6bbabf24f26b6 [file] [log] [blame]
//! regression test for issue <https://github.com/rust-lang/rust/issues/23173>
enum Token {
LeftParen,
RightParen,
Plus,
Minus, /* etc */
}
struct Struct {
a: usize,
}
fn use_token(token: &Token) {
unimplemented!()
}
fn main() {
use_token(&Token::Homura); //~ ERROR no variant or associated item named `Homura`
Struct::method(); //~ ERROR no function or associated item named `method` found
Struct::method; //~ ERROR no function or associated item named `method` found
Struct::Assoc; //~ ERROR no associated item named `Assoc` found
}