mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-03 21:47:36 +00:00
16 lines
229 B
Rust
16 lines
229 B
Rust
![]() |
// Regression test for #123154
|
||
|
|
||
|
struct AA {
|
||
|
pub data: [&usize]
|
||
|
//~^ ERROR missing lifetime specifier
|
||
|
}
|
||
|
|
||
|
impl AA {
|
||
|
const fn new() -> Self { }
|
||
|
//~^ ERROR mismatched types
|
||
|
}
|
||
|
|
||
|
static ST: AA = AA::new();
|
||
|
|
||
|
fn main() {}
|