re PR c++/67249 ([concepts] ICE parsing f(pair<auto, concept>))
2015-11-26 Paolo Carlini <paolo.carlini@oracle.com> PR c++/67249 * g++.dg/concepts/pr67249.C: New. From-SVN: r230947
This commit is contained in:
parent
f0e8751330
commit
7070a0fab2
2 changed files with 10 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2015-11-26 Paolo Carlini <paolo.carlini@oracle.com>
|
||||
|
||||
PR c++/67249
|
||||
* g++.dg/concepts/pr67249.C: New.
|
||||
|
||||
2015-11-26 Richard Biener <rguenther@suse.de>
|
||||
|
||||
PR testsuite/66799
|
||||
|
|
5
gcc/testsuite/g++.dg/concepts/pr67249.C
Normal file
5
gcc/testsuite/g++.dg/concepts/pr67249.C
Normal file
|
@ -0,0 +1,5 @@
|
|||
// { dg-options "-std=c++1z" }
|
||||
|
||||
template<class T> concept bool C1 = true;
|
||||
template<class A, class B> struct Pair {};
|
||||
void f(Pair<auto, C1>);
|
Loading…
Add table
Reference in a new issue