mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
26 lines
333 B
Rust
26 lines
333 B
Rust
// Unnecessary path disambiguator is ok
|
|
|
|
// check-pass
|
|
|
|
macro_rules! m {
|
|
($p: path) => {
|
|
let _ = $p(0);
|
|
let _: $p;
|
|
}
|
|
}
|
|
|
|
struct Foo<T> {
|
|
_a: T,
|
|
}
|
|
|
|
struct S<T>(T);
|
|
|
|
fn f() {
|
|
let f = Some(Foo { _a: 42 }).map(|a| a as Foo::<i32>);
|
|
let g: Foo::<i32> = Foo { _a: 42 };
|
|
|
|
m!(S::<u8>);
|
|
}
|
|
|
|
fn main() {}
|