1
Fork 0

Stabilize const_refs_to_static

update tests

fix bitwidth-sensitive stderr output

use build-fail for asm tests
This commit is contained in:
Ding Xiang Fei 2024-08-30 04:48:05 +08:00 committed by Xiang Fei Ding
parent 76ed7a1fa4
commit 1576a6d618
No known key found for this signature in database
GPG key ID: 3CD748647EEF6359
45 changed files with 157 additions and 442 deletions

View file

@ -5,7 +5,7 @@ variable cannot refer to a static variable.
Erroneous code example:
```compile_fail,E0658
```
static X: i32 = 42;
const Y: i32 = X;
```