mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
9 lines
213 B
Rust
9 lines
213 B
Rust
//@ check-fail
|
|
|
|
struct Foo<'a> //~ ERROR parameter `'a` is never used [E0392]
|
|
{
|
|
_a: [u8; std::mem::size_of::<&'a mut u8>()] //~ ERROR generic parameters may not be used in const operations
|
|
}
|
|
|
|
pub fn main() {}
|