Giant blob of minor changes
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / golang.org / x / tools@v0.0.0-20201105173854-bc9fc8d8c4bc / 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 // +builder // want `possible malformed \+build comment`
8 // +build !ignore
9
10 // Mention +build // want `possible malformed \+build comment`
11
12 // +build nospace // want "build comment must appear before package clause and be followed by a blank line"
13 package a
14
15 // +build toolate // want "build comment must appear before package clause and be followed by a blank line$"
16
17 var _ = 3
18
19 var _ = `
20 // +build notacomment
21 `