diff options
Diffstat (limited to 'test/data')
-rw-r--r-- | test/data/format/enumClass.kt | 4 | ||||
-rw-r--r-- | test/data/format/enumClass.md | 25 |
2 files changed, 29 insertions, 0 deletions
diff --git a/test/data/format/enumClass.kt b/test/data/format/enumClass.kt new file mode 100644 index 00000000..5988c644 --- /dev/null +++ b/test/data/format/enumClass.kt @@ -0,0 +1,4 @@ +public enum class InlineOption { + LOCAL_CONTINUE_AND_BREAK + ONLY_LOCAL_RETURN +} diff --git a/test/data/format/enumClass.md b/test/data/format/enumClass.md new file mode 100644 index 00000000..1f2df115 --- /dev/null +++ b/test/data/format/enumClass.md @@ -0,0 +1,25 @@ +[test](out.md) / [](out.md) / [InlineOption](out.md) + + +# InlineOption + + +``` +public enum class InlineOption +``` + + + + +### Constructors + + +| [<init>](out.md) | `private InlineOption()` | + + +### Enum Values + + +| [LOCAL_CONTINUE_AND_BREAK](out.md) | `public enum val LOCAL_CONTINUE_AND_BREAK : [InlineOption](out.md)` | +| [ONLY_LOCAL_RETURN](out.md) | `public enum val ONLY_LOCAL_RETURN : [InlineOption](out.md)` | + |