Merge pull request #2927 from kugelfuhr/kugelfuhr/fix-2926

Fix cc65 not detecting invalid integer and float literal suffixes
This commit is contained in:
Bob Andrews
2026-02-11 19:54:44 +01:00
committed by GitHub
2 changed files with 14 additions and 9 deletions

1
test/err/bug2926.c Normal file
View File

@@ -0,0 +1 @@
int main() { int a = 42LFOOBAR; return 0; }