Remove alloc keyword for struct

This commit is contained in:
nub31
2025-08-18 14:13:52 +02:00
parent ce78fb4d30
commit 1214b5554c
7 changed files with 48 additions and 37 deletions

View File

@@ -23,7 +23,7 @@ struct Human : Test
func main(args: []cstring): i64
{
let human: Test = alloc Human {
let human: Human = struct {
name = "oliver"
}