blob: d5b4db6a858325aae24c645b0db6312af5d650b6 [file] [log] [blame]
// Copyright 2023 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package p
var m map[int]int
func _() {
_, ok /* ERROR "undefined: ok" */ = m[0] // must not crash
}
func _() {
var ok = undef /* ERROR "undefined: undef" */
x, ok := m[0] // must not crash
_, _ = x, ok
}