blob: 21990ee150ab699d6bac07e1a365b2162b63313d [file]
//! Regression test for https://github.com/rust-lang/rust/issues/35600
//@ 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();
}