]> Cypherpunks.ru repositories - gostls13.git/blob - test/fixedbugs/bug295.go
all: make copyright headers consistent with one space after period
[gostls13.git] / test / fixedbugs / bug295.go
1 // run
2
3 // Copyright 2010 The Go Authors. All rights reserved.
4 // Use of this source code is governed by a BSD-style
5 // license that can be found in the LICENSE file.
6
7 package main
8
9 import . "testing"  // defines file-level T
10
11 type _ B // make use of package "testing" (but don't refer to T)
12
13 type S struct {
14         T int
15 }
16
17 func main() {
18         _ = &S{T: 1}    // should work
19 }