blob: aa26183a0d491aed4ae6609f44b0051f5af4ca63 [file] [log] [blame]
// run-pass
#![allow(non_camel_case_types)]
// This used to cause memory corruption in stage 0.
// pretty-expanded FIXME #23616
enum thing<K> { some(K), }
pub fn main() { let _x = thing::some("hi".to_string()); }