mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-26 02:06:07 +00:00
5 lines
310 B
C
5 lines
310 B
C
// RUN: %clang_cc1 %s -std=c2x -Wpre-c2x-compat -pedantic -fsyntax-only -verify
|
|
|
|
int digit_seps = 123'456; // expected-warning {{digit separators are incompatible with C standards before C23}}
|
|
unsigned char u8_char = u8'x'; // expected-warning {{unicode literals are incompatible with C standards before C23}}
|