Sign in
fuchsia
/
third_party
/
rust
/
90626979170da2d6c5ec1622b3d7a9512df9eb71
/
.
/
tests
/
ui
/
unconstrained-ref.rs
blob: 473ca954b232d32ddb4be38c4fc1963a5415ecca [
file
] [
log
] [
blame
]
struct
S
<
'a, T:'
a
>
{
o
:
&
'
a
Option
<
T
>
}
fn
main
()
{
S
{
o
:
&
None
};
//~ ERROR type annotations needed [E0282]
}