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
/
crash101.C
blob
c59737a8938900bc1d94d4694e87cb37d2535c4c
1
// PR c++/44039
2
3
struct locale { };
4
5
template<class charT>
6
void
7
foo()
8
{ locale::locale(); } // { dg-error "cannot call|function-style" }
9
10
void
11
bar()
12
{ foo<char>(); }