blob: 19c656d3a0c89a5b1229c3832995cfbcc1833fa1 [file] [log] [blame]
// Copyright 2020 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 main
import "./a"
type S = a.S
func main() {
var s S[int]
if s.F != 0 {
panic(s.F)
}
}