Sign in
gnu
/
gcc.git
/
refs/heads/trunk
/
.
/
gcc
/
testsuite
/
gdc.test
/
compilable
/
alias_param_qual.d
blob: ac902e7d2c896c2edb050ee523a3abda98e30429 [
file
] [
log
] [
blame
]
alias
t
(
alias
a
)
=
a
;
static
assert
(
is
(
t
!(
const
Object
)
==
const
Object
));
static
assert
(
is
(
t
!(
shared
(
Object
))
==
shared
Object
));
static
assert
(
is
(
t
!(
immutable S
)
==
immutable
(
S
)));
struct
S
{}