blob: 7c15598448d7fe6ccd01a16ff1f81cd874918934 [file] [log] [blame]
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 for type
Struct::method; //~ ERROR no function or associated item named `method` found for type
Struct::Assoc; //~ ERROR no associated item named `Assoc` found for type `Struct` in
}