diff options
| author | Bram Moolenaar <Bram@vim.org> | 2013-03-07 13:21:32 +0100 |
|---|---|---|
| committer | Bram Moolenaar <Bram@vim.org> | 2013-03-07 13:21:32 +0100 |
| commit | d999db2f1e5ec51042883d35ca44f0d751324b19 (patch) | |
| tree | 5e8ecdd02d18acb143f060497ef3aa8d93760d54 /src/testdir/test3.in | |
| parent | 34700a6a15323a499d56b2f66a286fc368783371 (diff) | |
| download | vim-git-d999db2f1e5ec51042883d35ca44f0d751324b19.tar.gz | |
updated for version 7.3.845v7.3.845
Problem: Enum indenting is not tested.
Solution: Add tests. (Hong Xu)
Diffstat (limited to 'src/testdir/test3.in')
| -rw-r--r-- | src/testdir/test3.in | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/testdir/test3.in b/src/testdir/test3.in index abb7750f8..a7543945c 100644 --- a/src/testdir/test3.in +++ b/src/testdir/test3.in @@ -318,6 +318,20 @@ no, maybe } soppie; +public static enum +{ +yes = 0, +no, +maybe +} soppie; + +static private enum +{ +yes = 0, +no, +maybe +} soppie; + { int a, b; |
