1
0
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:
Delyan Angelov
2023-02-01 22:38:41 +02:00
parent 322eb8197d
commit 988aed0353
10 changed files with 15 additions and 15 deletions

View File

@@ -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.