Merge pull request #2512 from kugelfuhr/kugelfuhr/fix-2134

Warn for braces around a pointer initializer
This commit is contained in:
Bob Andrews
2024-09-08 16:05:58 +02:00
committed by GitHub
3 changed files with 12 additions and 0 deletions

3
test/ref/bug2134.c Normal file
View File

@@ -0,0 +1,3 @@
int i = { 0 };
char* p = { 0 };
int main() { return 0; }

2
test/ref/bug2134.cref Normal file
View File

@@ -0,0 +1,2 @@
bug2134.c:1: Warning: Braces around scalar initializer
bug2134.c:2: Warning: Braces around scalar initializer