Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
feature-gates
/
feature-gate-derive-from.rs
blob: 0e8c5e4af379a4d5788226d3fc40477f4f8f8d5e [
file
] [
log
] [
blame
]
use
std
::
from
::
From
;
//~ ERROR use of unstable library feature `derive_from
#[
derive
(
From
)]
//~ ERROR use of unstable library feature `derive_from`
struct
Foo
(
u32
);
fn
main
()
{}