Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
issues
/
issue-18423.rs
blob: a81b32f050c3861e48979f6adb0cfb8ce00f46d5 [
file
] [
log
] [
blame
]
// 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
()
{
}