Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
gdc.test
/
compilable
/
test15550.d
blob: 7a016fa481477a71b4cf0eadc063c8538877feed [
file
] [
log
] [
blame
]
// REQUIRED_ARGS: -o-
// PERMUTE_ARGS:
struct
Vector
(
T
,
int
N
)
{
void
opDispatch
(
string
,
U
)(
U
)
{
}
void
baz
(
string
,
U
)(
U
)
{
}
}
static
assert
(!
is
(
typeof
(
Vector
!(
int
,
2
).
_isMatrix
)));
static
assert
(!
is
(
typeof
(
Vector
!(
int
,
2
).
baz
!
"_isMatrix"
)));