.gitignore added
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / golang.org / x / mod@v0.4.1 / modfile / testdata / block.in
diff --git a/.config/coc/extensions/coc-go-data/tools/pkg/mod/golang.org/x/mod@v0.4.1/modfile/testdata/block.in b/.config/coc/extensions/coc-go-data/tools/pkg/mod/golang.org/x/mod@v0.4.1/modfile/testdata/block.in
new file mode 100644 (file)
index 0000000..a19990e
--- /dev/null
@@ -0,0 +1,33 @@
+// comment
+x "y" z
+
+// block
+block ( // block-eol
+       // x-before-line
+       
+       "x" ( y // x-eol
+       "x" ) y // y-eol
+       "x1"
+       "x2"
+       // line
+       "x3"
+       "x4"
+       
+       "x5"
+       
+       // y-line
+       "y" //  y-eol
+       
+       "z" // z-eol
+) // block-eol2
+
+
+block1()
+
+block2 (x y z)
+
+block3 "w" ( ) // empty block
+block4 "x" ( ) "y" // not a block
+block5 ( "z" // also not a block
+
+// eof