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++/86728 - C variadic generic lambda.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
const2.C
blob
5188fe29d10e9081bacd8da0f14aaac84f07bddf
1
// PR c++/39608
2
// We were improperly considering dependent members of the current
3
// instantiation to be non-constant (and therefore invalid template
4
// non-type arguments).
5
6
template <int I>
7
struct C {};
8
9
template <class T>
10
struct A
11
{
12
static const T x = 1;
13
C<A<T>::x> c; // { dg-bogus "invalid" }
14
};
15
16
A<int> a;