mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
17 lines
193 B
Rust
17 lines
193 B
Rust
// run-pass
|
|
#![allow(dead_code)]
|
|
// pretty-expanded FIXME #23616
|
|
#![allow(non_camel_case_types)]
|
|
|
|
enum what { }
|
|
|
|
fn what_to_string(x: what) -> String
|
|
{
|
|
match x {
|
|
}
|
|
}
|
|
|
|
pub fn main()
|
|
{
|
|
}
|