summaryrefslogtreecommitdiff
path: root/test/rebar_edoc_SUITE_data/bad/apps/bar2/src/bar2.erl
diff options
context:
space:
mode:
Diffstat (limited to 'test/rebar_edoc_SUITE_data/bad/apps/bar2/src/bar2.erl')
-rw-r--r--test/rebar_edoc_SUITE_data/bad/apps/bar2/src/bar2.erl12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/rebar_edoc_SUITE_data/bad/apps/bar2/src/bar2.erl b/test/rebar_edoc_SUITE_data/bad/apps/bar2/src/bar2.erl
deleted file mode 100644
index 2afb745..0000000
--- a/test/rebar_edoc_SUITE_data/bad/apps/bar2/src/bar2.erl
+++ /dev/null
@@ -1,12 +0,0 @@
-%% @doc one docline is fine
-%% @doc a second docline causes a failure
-%% @doc if not, then a & causes a bad ref error.
--module(bar2).
--export([bar2/0]).
--export_type([barer2/0]).
-
--type barer2() :: string().
-
-% @doc Bar2 bars the bar2.
--spec bar2() -> barer2().
-bar2() -> "Barer2".