.gitignore added
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / honnef.co / go / tools@v0.1.1 / stylecheck / testdata / src / CheckInvisibleCharacters / CheckInvisibleCharacters.go
diff --git a/.config/coc/extensions/coc-go-data/tools/pkg/mod/honnef.co/go/tools@v0.1.1/stylecheck/testdata/src/CheckInvisibleCharacters/CheckInvisibleCharacters.go b/.config/coc/extensions/coc-go-data/tools/pkg/mod/honnef.co/go/tools@v0.1.1/stylecheck/testdata/src/CheckInvisibleCharacters/CheckInvisibleCharacters.go
new file mode 100644 (file)
index 0000000..e404e6b
--- /dev/null
@@ -0,0 +1,12 @@
+// Package pkg ...
+package pkg
+
+var (
+       a = "\a"  // want `Unicode control character U\+0007`
+       b = "\a\1a" // want `Unicode control characters`
+       c = "Test       test"
+       d = `T
+est`
+       e = `Zero​Width` // want `Unicode format character U\+200B`
+       f = "\u200b"
+)