Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
sizeof12.C
blob: e165d2aab789a40ff8e53987e78ffbe4aa37b2ea [
file
] [
log
] [
blame
]
// Contributed by Dodji Seketeli <dodji@redhat.com>
// Origin PR c++/41863
template
<
int
X
>
struct
Bar
{
};
template
<
typename
T
>
class
Foo
{
T m_foo
;
void
crash
()
{
Bar
<
sizeof
(
m_foo
)>
bar
;
}
};