diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2020-05-06 20:55:07 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2020-05-06 20:55:07 +0300 |
commit | 1b79c13f8aa4c93ea727b1d42b30f3838faeaedf (patch) | |
tree | 97ee08fd0c99777fb1e9a78ca8a3a6bd3e017e94 /test/lintplus.awk | |
parent | 2a1b7457e8c878650352cf4925872c59d07a5fa2 (diff) | |
download | egawk-1b79c13f8aa4c93ea727b1d42b30f3838faeaedf.tar.gz egawk-1b79c13f8aa4c93ea727b1d42b30f3838faeaedf.tar.bz2 egawk-1b79c13f8aa4c93ea727b1d42b30f3838faeaedf.zip |
Add lint check for string + string.
Diffstat (limited to 'test/lintplus.awk')
-rw-r--r-- | test/lintplus.awk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/lintplus.awk b/test/lintplus.awk new file mode 100644 index 00000000..3c4e76c4 --- /dev/null +++ b/test/lintplus.awk @@ -0,0 +1 @@ +BEGIN { y = substr("abc", 2, 2) + "d" ; print y } |