rust/src/test/ui/issues/issue-18423.rs
2021-01-10 13:07:40 +01:00

8 lines
208 B
Rust

// Test that `Box` cannot be used with a lifetime argument.
struct Foo<'a> {
x: Box<'a, isize>
//~^ ERROR this struct takes 0 lifetime arguments but 1 lifetime argument was supplied
}
fn main() { }