Sign in
fuchsia
/
third_party
/
rust
/
0.4
/
.
/
src
/
test
/
run-pass
/
impl-implicit-trait.rs
blob: e9ca583005c12f5d43480260b4f4635b321c2768 [
file
] [
log
] [
blame
]
enum
option_
<
T
>
{
none_
,
some_
(
T
),
}
impl
<
T
>
option_
<
T
>
{
fn
foo
()
->
bool
{
true
}
}
enum
option__
{
none__
,
some__
(
int
)
}
impl
option__
{
fn
foo
()
->
bool
{
true
}
}
fn
main
()
{
}