- x'1234' +++ (ichar[1]) { 'A' } would fail due to missing const folding.

This commit is contained in:
Christoffer Lerno
2025-12-30 16:06:28 +01:00
parent 493a084745
commit 5ed4f9519f
3 changed files with 10 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
fn int main()
{
const A = x'1234' +++ (ichar[1]) { 'A' };
return 0;
}