Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
non-type-template-argument-1.C
blob: 99b00ccb8e508ec9ef58c938da91f54a699389ae [
file
] [
log
] [
blame
]
struct
A
{
static
const
bool
b
=
false
;
};
struct
B
{
typedef
A X
;
};
template
<bool>
struct
C
{};
template
<
typename
T
>
struct
D
{
C
<
T
::
X
>
c
;
// { dg-error "parsed as a non-type|if a type is meant" }
};
D
<
B
>
d
;
// { dg-message "required from here" }