Sign in
fuchsia
/
third_party
/
rust
/
cf451f08307168f32ffc74b478026e5e3ebc5ca9
/
.
/
tests
/
ui
/
parser
/
trait-item-with-defaultness-pass.rs
blob: c636342f6ca42c02ead5bea0fe7dd2bc880d2e42 [
file
] [
log
] [
blame
]
//@ check-pass
fn
main
()
{}
#[
cfg
(
FALSE
)]
trait
X
{
default
const
A
:
u8
;
default
const
B
:
u8
=
0
;
default
type
D
;
default
type
C
:
Ord
;
default
fn
f1
();
default
fn
f2
()
{}
}