Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
5f6fa960c254dfda8ba1d5dc2fb281b6908d8005
/
.
/
tests
/
ui
/
issues
/
issue-18423.rs
blob: 675fd041154beb6b56b823154f8d39a212c48bdb [
file
]
// Test that `Box` cannot be used with a lifetime argument.
struct
Foo
<
'
a
>
{
x
:
Box
<
'
a
,
isize
>
//~^ ERROR struct takes 0 lifetime arguments but 1 lifetime argument was supplied
}
fn
main
()
{
}