- *(int*)1 incorrectly yielded an assert in LLVM IR lowering #2584.

This commit is contained in:
Christoffer Lerno
2025-11-20 10:36:32 +01:00
parent 2a41fa6281
commit 39694e65c0
3 changed files with 8 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
module main;
fn void main()
{
int x = *(int*)1;
}