branch: externals/csharp-mode commit d537cfae49c26ee5b8ba7822cd2b398b81f1b67f Author: Jostein Kjønigsen <jost...@kjonigsen.net> Commit: Jostein Kjønigsen <jost...@kjonigsen.net>
Add test-case for Enum-indentation. --- test-files/indentation-tests.cs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/test-files/indentation-tests.cs b/test-files/indentation-tests.cs index 11ac6db..838548b 100644 --- a/test-files/indentation-tests.cs +++ b/test-files/indentation-tests.cs @@ -195,3 +195,17 @@ public class NestedPreProcessor public static bool Debug = true; #endif } + +enum SomeEnum +{ + Item, + Another, + Yeah +} + +enum AnotherEnum +{ + First = 1, + Second = 2, + Third = 3 +}