mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 19:32:01 +00:00
16 lines
306 B
Rust
16 lines
306 B
Rust
// Test that disallow lifetime parameters that are unused.
|
|
|
|
use std::marker;
|
|
|
|
struct Bivariant<'a>; //~ ERROR parameter `'a` is never used
|
|
|
|
struct Struct<'a, 'd> { //~ ERROR parameter `'d` is never used
|
|
field: &'a [i32]
|
|
}
|
|
|
|
trait Trait<'a, 'd> { // OK on traits
|
|
fn method(&'a self);
|
|
}
|
|
|
|
fn main() {}
|