blob: 3c3c88f03108c6ffaa6c72f88db933e53443c978 [file] [log] [blame]
package nested_complit
type ncFoo struct {} //@item(structNCFoo, "ncFoo", "struct{...}", "struct")
type ncBar struct { //@item(structNCBar, "ncBar", "struct{...}", "struct")
baz []ncFoo
}
func _() {
_ := ncBar{
baz: [] //@complete(" //", structNCBar, structNCFoo)
}
}