summaryrefslogtreecommitdiffstats
path: root/src/test/ui/traits/impl-implicit-trait.rs
blob: fac2bcce2481b91d1a26318a3b4d772c88e2d32a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// 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() {
}