diff options
author | Jakub Jelinek <jakub@redhat.com> | 2024-07-26 21:01:03 +0200 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2024-07-26 21:01:03 +0200 |
commit | 2fb5bbe5ee9c148cd7d1068b18be66cc52054812 (patch) | |
tree | fa9b96437d9b178fca38c7b220dc1458285ac089 /gcc | |
parent | a75c6295252d0d998a18927dc7510fac965134c4 (diff) | |
download | gcc-2fb5bbe5ee9c148cd7d1068b18be66cc52054812.zip gcc-2fb5bbe5ee9c148cd7d1068b18be66cc52054812.tar.gz gcc-2fb5bbe5ee9c148cd7d1068b18be66cc52054812.tar.bz2 |
testsuite: Fix up ucn-1.C for C++26
On Fri, Jul 26, 2024 at 11:43:13AM -0400, Jason Merrill wrote:
> I'm now seeing a -std=c++26 failure on g++.dg/cpp/ucn-1.C.
I don't remember seeing it when I wrote the patch, but today I see it as
well.
2024-07-26 Jakub Jelinek <jakub@redhat.com>
* g++.dg/cpp/ucn-1.C (main): Expect error on c\u0024c identifier also
for C++26.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/g++.dg/cpp/ucn-1.C | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/g++.dg/cpp/ucn-1.C b/gcc/testsuite/g++.dg/cpp/ucn-1.C index 9596a42..8277d2e 100644 --- a/gcc/testsuite/g++.dg/cpp/ucn-1.C +++ b/gcc/testsuite/g++.dg/cpp/ucn-1.C @@ -9,7 +9,7 @@ int main() int c\u0041c; // { dg-error "not valid in an identifier" } // $ is OK on most targets; not part of basic source char set - int c\u0024c; // { dg-error "not valid in an identifier" "" { target { powerpc-ibm-aix* } } } + int c\u0024c; // { dg-error "not valid in an identifier" "" { target { { powerpc-ibm-aix* } || c++26 } } } U"\uD800"; // { dg-error "not a valid universal character" } |