mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
ci: fix broken tests after 322eb81
This commit is contained in:
@@ -5564,7 +5564,7 @@ cause a panic.
|
||||
```v
|
||||
struct Node {
|
||||
a &Node
|
||||
b &Node = 0 // Auto-initialized to nil, use with caution!
|
||||
b &Node = unsafe { nil } // Auto-initialized to nil, use with caution!
|
||||
}
|
||||
|
||||
// Reference fields must be initialized unless an initial value is declared.
|
||||
|
Reference in New Issue
Block a user