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