0
0
mirror of https://github.com/vim/vim.git synced 2025-10-30 09:47:20 -04:00

updated for version 7.3.845

Problem:    Enum indenting is not tested.
Solution:   Add tests. (Hong Xu)
This commit is contained in:
Bram Moolenaar
2013-03-07 13:21:32 +01:00
parent 34700a6a15
commit d999db2f1e
3 changed files with 30 additions and 0 deletions

View File

@@ -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;

View File

@@ -306,6 +306,20 @@ static enum
maybe
} soppie;
public static enum
{
yes = 0,
no,
maybe
} soppie;
static private enum
{
yes = 0,
no,
maybe
} soppie;
{
int a,
b;