blob: 1bdbfb1fbcd427e21d699bd8d7da855335b82cff [file] [log] [blame]
//! regression test for issue <https://github.com/rust-lang/rust/issues/23217>
pub enum SomeEnum {
B = SomeEnum::A, //~ ERROR no variant or associated item named `A` found
}
fn main() {}