Sign in
rust
/
rust
/
08cd08fbef8c6663b052d8d9e4930d5696cbb8a7
/
.
/
tests
/
ui
/
macros
/
macro_path_as_generic_bound.rs
blob: d720752f4ca57ba31d0977accc133d66e318ee14 [
file
]
trait
Foo
{}
macro_rules
!
foo
((
$t
:
path
)
=>
{
impl
<
T
:
$t
>
Foo
for
T
{}
});
foo
!(
m
::
m2
::
A
);
//~ ERROR cannot find
fn
main
()
{}