rust/tests/ui/resolve/resolve-pseudo-shadowing.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
226 B
Rust
Raw Normal View History

// run-pass
// check that type parameters can't "shadow" qualified paths.
fn check<Clone>(_c: Clone) {
fn check2() {
let () = <() as std::clone::Clone>::clone(&());
}
check2();
}
fn main() { check(()); }