Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
sizeof11.C
blob: b1d4f72c7712eabed9c70475a81f5bb5a88737b1 [
file
] [
log
] [
blame
]
// PR c++/29435
template
<
class
T
>
struct
A
{};
template
<
int
>
void
g
()
{
sizeof
(
A
<
int
>);
}
template
<
class
T
>
struct
B
;
template
<
int
>
void
f
()
{
sizeof
(
B
<int>
);
// { dg-error "3:invalid application of .sizeof. to incomplete type" }
}