Sign in
fuchsia
/
third_party
/
rust
/
ccbe9834fbc202dcfe113309ca3403f12454886e
/
.
/
tests
/
ui
/
traits
/
overflow-computing-ambiguity.rs
blob: b8f11efeda283ad689c2a3a89299a30eee1cb64c [
file
] [
log
] [
blame
]
trait
Hello
{}
struct
Foo
<
'a, T: ?Sized>(&'
a T
);
impl
<
'a, T: ?Sized> Hello for Foo<'
a
,
&
'a T> where Foo<'
a
,
T
>:
Hello
{}
impl
Hello
for
Foo
<
'
static
,
i32
>
{}
fn
hello
<
T
:
?
Sized
+
Hello
>()
{}
fn
main
()
{
hello
();
//~^ ERROR type annotations needed
}