We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dac4ba3 commit 3945188Copy full SHA for 3945188
test/testdata/fix/in/mirror.go
@@ -0,0 +1,11 @@
1
+//golangcitest:args -Emirror
2
+//golangcitest:expected_exitcode 0
3
+package testdata
4
+
5
+import (
6
+ "unicode/utf8"
7
+)
8
9
+func foobar() {
10
+ _ = utf8.RuneCount([]byte("foobar"))
11
+}
test/testdata/fix/out/mirror.go
+ _ = utf8.RuneCountInString("foobar")
0 commit comments