// run-pass #![allow(dead_code)] #![allow(non_camel_case_types)] // pretty-expanded FIXME #23616 enum option_ { none_, some_(T), } impl option_ { pub fn foo(&self) -> bool { true } } enum option__ { none__, some__(isize) } impl option__ { pub fn foo(&self) -> bool { true } } pub fn main() { }