repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Daily bump.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
alias-decl-72a.C
blob
a4443e18f9d5876a805e4132f759f5784893c195
1
// PR c++/100102
2
// { dg-do compile { target c++11 } }
3
4
template<int> struct ratio;
5
template<class T> struct duration {
6
static constexpr int _S_gcd();
7
template<class> using __is_harmonic = ratio<(duration::_S_gcd)()>;
8
using type = __is_harmonic<int>;
9
};