diff --git a/examples/demo/demo.odin b/examples/demo/demo.odin index c7a24fd7a..2b71f7b9a 100644 --- a/examples/demo/demo.odin +++ b/examples/demo/demo.odin @@ -1148,7 +1148,7 @@ map_type :: proc() { // can be done in two ways: elem, ok := m["Bob"]; exists := "Bob" in m; - _ = elem; + _, _ = elem, ok; _ = exists; }