blob: d595506e336f643220a519e14eb4e843c339c9ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// run-pass
#![allow(non_camel_case_types)]
#![allow(dead_code)]
// pretty-expanded FIXME #23616
enum option<T> { none, some(T), }
fn f<T>() -> option<T> { return option::none; }
pub fn main() { f::<isize>(); }
|