rust/src/test/ui/issues/issue-18423.rs
2018-12-25 21:08:33 -07:00

9 lines
166 B
Rust

// Test that `Box` cannot be used with a lifetime argument.
struct Foo<'a> {
x: Box<'a, isize> //~ ERROR wrong number of lifetime arguments
}
pub fn main() {
}