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
PR c++/85765 - SFINAE and non-type default template arg.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
nsdmi-template11.C
blob
60e53c4190a0969f2cce47e79163046e2256c010
1
// PR c++/58930
2
// { dg-do compile { target c++11 } }
3
4
struct SampleModule
5
{
6
explicit SampleModule (int);
7
};
8
9
template < typename >
10
struct BaseHandler
11
{
12
SampleModule module_ { 0 };
13
};
14
15
BaseHandler<int> a;