mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
27 lines
335 B
Rust
27 lines
335 B
Rust
//@ 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() {
|
|
}
|