Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
impl-trait
/
in-trait
/
bad-item-bound-within-rpitit-2.rs
blob: 14b1ebea8db23a4bac3e244de6463fc404de199f [
file
] [
log
] [
blame
] [
edit
]
// issue: 114146
trait
Foo
{
fn
bar
<
'other: '
a
>()
->
impl
Sized
+
'
a
{}
//~^ ERROR use of undeclared lifetime name `'a`
//~| ERROR use of undeclared lifetime name `'a`
}
fn
main
()
{}