.gitignore added
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / golang.org / x / tools@v0.1.1-0.20210319172145-bda8f5cee399 / go / analysis / passes / buildtag / testdata / src / a / buildtag.go
1 // Copyright 2013 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
4
5 // This file contains tests for the buildtag checker.
6
7 // want +1 `possible malformed \+build comment`
8 // +builder
9 // +build ignore
10
11 // Mention +build // want `possible malformed \+build comment`
12
13 // want +1 `misplaced \+build comment`
14 // +build nospace
15 //go:build ok
16 package a
17
18 // want +1 `misplaced \+build comment`
19 // +build toolate
20
21 var _ = 3
22
23 var _ = `
24 // +build notacomment
25 `