Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
rfcs
/
rfc-2093-infer-outlives
/
cross-crate.rs
blob: a9bfeabf16e5edb45ce6d641ec870cbabdf8cc94 [
file
] [
log
] [
blame
] [
edit
]
#![
feature
(
rustc_attrs
)]
#[
rustc_outlives
]
struct
Foo
<
'
a
,
T
>
{
//~ ERROR rustc_outlives
bar
:
std
::
slice
::
IterMut
<
'
a
,
T
>
}
fn
main
()
{}