2016-04-17 00:48:40 +00:00
|
|
|
mod a {
|
|
|
|
pub mod b {
|
|
|
|
pub mod c {
|
|
|
|
pub struct S<T>(T);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
macro_rules! import {
|
|
|
|
($p: path) => (use $p;);
|
|
|
|
}
|
|
|
|
|
2017-07-23 16:32:36 +00:00
|
|
|
fn f1() {
|
2017-08-21 21:54:03 +00:00
|
|
|
import! { a::b::c::S<u8> } //~ ERROR unexpected generic arguments in path
|
2017-07-23 16:32:36 +00:00
|
|
|
}
|
|
|
|
fn f2() {
|
2017-08-21 21:54:03 +00:00
|
|
|
import! { a::b::c::S<> } //~ ERROR unexpected generic arguments in path
|
2017-07-23 16:32:36 +00:00
|
|
|
}
|
2020-12-01 08:40:28 +00:00
|
|
|
fn f3() {
|
|
|
|
import! { a::b<>::c<u8>::S<> } //~ ERROR unexpected generic arguments in path
|
|
|
|
}
|
2016-04-17 00:48:40 +00:00
|
|
|
|
|
|
|
fn main() {}
|