Sign in
rust
/
rust-lang
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
impl-trait
/
in-trait
/
bad-item-bound-within-rpitit-2.rs
blob: 14b1ebea8db23a4bac3e244de6463fc404de199f [
file
] [
log
] [
blame
]
// 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
()
{}