mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-08 16:07:43 +00:00
9 lines
207 B
Rust
9 lines
207 B
Rust
![]() |
//@ revisions: real pre_expansion
|
||
|
//@[pre_expansion] check-pass
|
||
|
|
||
|
#[cfg(real)]
|
||
|
fn hello<'a>() -> impl Sized + use<'a> + use<'a> {}
|
||
|
//[real]~^ ERROR duplicate `use<...>` precise capturing syntax
|
||
|
|
||
|
fn main() {}
|