1
0
mirror of https://github.com/golang/go synced 2024-10-01 07:28:35 -06:00
go/test/fixedbugs/issue18393.go
Robert Griesemer d390283ff4 cmd/compile/internal/syntax: compiler directives must start at beginning of line
- ignore them, if they don't.
- added tests

Fixes #18393.

Change-Id: I13f87b81ac6b9138ab5031bb3dd6bebc4c548156
Reviewed-on: https://go-review.googlesource.com/37020
Run-TryBot: Robert Griesemer <gri@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Matthew Dempsky <mdempsky@google.com>
2017-02-15 06:49:21 +00:00

25 lines
542 B
Go

// errorcheck
// Copyright 2017 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.
// Test that compiler directives are ignored if they
// don't start at the beginning of the line.
package p
//line issue18393.go:20
import 42 // error on line 20
/* //line not at start of line: ignored */ //line issue18393.go:30
var x // error on line 24, not 30
// ERROR "missing import path"
// ERROR "syntax error: unexpected newline, expecting type"