Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
parser
/
foreign-ty-syntactic-pass.rs
blob: a746de1f14f4da082df949c3c361cbb7fe6a9216 [
file
] [
log
] [
blame
]
// check-pass
fn
main
()
{}
#[
cfg
(
FALSE
)]
extern
"C"
{
type
A
:
Ord
;
type
A
<
'a> where '
a
:
'
static
;
type
A
<
T
:
Ord
>
where T
:
'
static
;
type
A
=
u8
;
type
A
<
'a: '
static
,
T
:
Ord
+
'static>: Eq + PartialEq where T: '
static
+
Copy
=
Vec
<
u8
>;
}