summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-35600.rs
blob: f0bab6010d72447950893779d60cf0bd6d8de274 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// run-pass
#![allow(non_camel_case_types)]
#![allow(unused_variables)]

trait Foo {
    type bar;
    fn bar();
}

impl Foo for () {
    type bar = ();
    fn bar() {}
}

fn main() {
    let x: <() as Foo>::bar = ();
    <()>::bar();
}