From: paolo Date: Thu, 26 Nov 2015 13:14:45 +0000 (+0000) Subject: 2015-11-26 Paolo Carlini X-Git-Tag: upstream/6.1~2718 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8426303e1600a19145539753f67571d06e1b4bdc;p=platform%2Fupstream%2Flinaro-gcc.git 2015-11-26 Paolo Carlini PR c++/67249 * g++.dg/concepts/pr67249.C: New. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230947 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index faae5f7..7e4e419 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2015-11-26 Paolo Carlini + + PR c++/67249 + * g++.dg/concepts/pr67249.C: New. + 2015-11-26 Richard Biener PR testsuite/66799 diff --git a/gcc/testsuite/g++.dg/concepts/pr67249.C b/gcc/testsuite/g++.dg/concepts/pr67249.C new file mode 100644 index 0000000..cb0445d --- /dev/null +++ b/gcc/testsuite/g++.dg/concepts/pr67249.C @@ -0,0 +1,5 @@ +// { dg-options "-std=c++1z" } + +template concept bool C1 = true; +template struct Pair {}; +void f(Pair);