aboutsummaryrefslogtreecommitdiff
path: root/test/bom.go
diff options
context:
space:
mode:
authorRob Pike <r@golang.org>2012-09-10 13:03:07 -0700
committerRob Pike <r@golang.org>2012-09-10 13:03:07 -0700
commit6ce49303652420b55c7c878a924bbcd5e2e8e624 (patch)
tree638855be26a2b7ae0b7207fc6c7ee4d88e779cfa /test/bom.go
parent2c5b53866c001632678c0467f713d019cf50c1a6 (diff)
downloadgo-6ce49303652420b55c7c878a924bbcd5e2e8e624.tar.gz
go-6ce49303652420b55c7c878a924bbcd5e2e8e624.zip
gc: initial BOM is legal.
Fixes #4040. R=rsc CC=golang-dev https://golang.org/cl/6497098
Diffstat (limited to 'test/bom.go')
-rw-r--r--test/bom.go26
1 files changed, 26 insertions, 0 deletions
diff --git a/test/bom.go b/test/bom.go
new file mode 100644
index 0000000000..37f73bc5d2
--- /dev/null
+++ b/test/bom.go
@@ -0,0 +1,26 @@
+// runoutput
+
+// Copyright 2011 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 source file beginning with a byte order mark.
+
+package main
+
+import (
+ "fmt"
+ "strings"
+)
+
+func main() {
+ prog = strings.Replace(prog, "BOM", "\uFEFF", -1)
+ fmt.Print(prog)
+}
+
+var prog = `BOM
+package main
+
+func main() {
+}
+`