Skip to content

Instantly share code, notes, and snippets.

@nodefish
Created July 16, 2019 06:58
Show Gist options
  • Save nodefish/06f398de5a88390987f3149163845f3a to your computer and use it in GitHub Desktop.
Save nodefish/06f398de5a88390987f3149163845f3a to your computer and use it in GitHub Desktop.
const std = @import("std");
const Node = struct {
nodes: ?[2]?Node = null,
};
test "segfault" {
const node = Node{
.nodes = [2]?Node{
null,
Node{
.nodes = [2]?Node{
Node{},
null,
},
},
},
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment