mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
12 lines
564 B
Rust
12 lines
564 B
Rust
struct S;
|
|
|
|
impl S {
|
|
const C: &&str = &"";
|
|
//~^ WARN `&` without an explicit lifetime name cannot be used here
|
|
//~| WARN this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
//~| WARN `&` without an explicit lifetime name cannot be used here
|
|
//~| WARN this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
//~| ERROR in type `&&str`, reference has a longer lifetime than the data it references
|
|
}
|
|
|
|
fn main() {}
|