2025-07-13 16:39:45 -04:00
|
|
|
// https://github.com/rust-lang/rust/issues/3037
|
2024-02-16 20:02:50 +00:00
|
|
|
//@ run-pass
|
2018-09-25 23:51:35 +02:00
|
|
|
#![allow(dead_code)]
|
2018-08-31 15:02:01 +02:00
|
|
|
#![allow(non_camel_case_types)]
|
2015-03-22 13:13:15 -07:00
|
|
|
|
2012-07-27 13:13:03 -07:00
|
|
|
enum what { }
|
|
|
|
|
|
2014-06-21 03:39:03 -07:00
|
|
|
fn what_to_string(x: what) -> String
|
2012-07-27 13:13:03 -07:00
|
|
|
{
|
2012-08-06 12:34:08 -07:00
|
|
|
match x {
|
2012-07-27 13:13:03 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-01 19:43:17 -08:00
|
|
|
pub fn main()
|
2012-07-27 13:13:03 -07:00
|
|
|
{
|
|
|
|
|
}
|