rust/src/test/ui/span/import-ty-params.rs

21 lines
341 B
Rust
Raw Normal View History

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;);
}
fn f1() {
2017-08-21 21:54:03 +00:00
import! { a::b::c::S<u8> } //~ ERROR unexpected generic arguments in path
}
fn f2() {
2017-08-21 21:54:03 +00:00
import! { a::b::c::S<> } //~ ERROR unexpected generic arguments in path
}
2016-04-17 00:48:40 +00:00
fn main() {}