aboutsummaryrefslogtreecommitdiff
path: root/tests/fixtures/c/indented.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/fixtures/c/indented.c')
-rw-r--r--tests/fixtures/c/indented.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/fixtures/c/indented.c b/tests/fixtures/c/indented.c
new file mode 100644
index 0000000..0b7a9f6
--- /dev/null
+++ b/tests/fixtures/c/indented.c
@@ -0,0 +1,13 @@
+enum my_enum {
+ /* md
+ @name my_enum/one
+ My explanation of type_one
+ */
+ type_one = 1;
+ /* md
+ @name my_enum/two
+ My explanation of type_two
+ relative indented line
+ */
+ type_two = 2;
+}