Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
rfcs
/
rfc-2093-infer-outlives
/
explicit-projection.rs
blob: 00b89528865a9dc16711793e79399e1842ab28a3 [
file
] [
log
] [
blame
] [
edit
]
#![
feature
(
rustc_attrs
)]
trait
Trait
<
'x, T> where T: '
x
{
type
Type
;
}
#[
rustc_outlives
]
struct
Foo
<
'a, A, B> where A: Trait<'
a
,
B
>
//~ ERROR rustc_outlives
{
foo
:
<
A
as
Trait
<
'
a
,
B
>>::
Type
}
fn
main
()
{}