repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2014-01-30 Alangi Derick <alangiderick@gmail.com>
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
sizeof12.C
blob
e165d2aab789a40ff8e53987e78ffbe4aa37b2ea
1
// Contributed by Dodji Seketeli <dodji@redhat.com>
2
// Origin PR c++/41863
3
4
template<int X>
5
struct Bar
6
{
7
};
8
9
template<typename T>
10
class Foo
11
{
12
T m_foo;
13
14
void
15
crash()
16
{
17
Bar<sizeof(m_foo)> bar;
18
}
19
};