summaryrefslogtreecommitdiff
path: root/test/rebar_edoc_SUITE_data/foo/apps/bar1/src/bar1.erl
diff options
context:
space:
mode:
Diffstat (limited to 'test/rebar_edoc_SUITE_data/foo/apps/bar1/src/bar1.erl')
-rw-r--r--test/rebar_edoc_SUITE_data/foo/apps/bar1/src/bar1.erl9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/rebar_edoc_SUITE_data/foo/apps/bar1/src/bar1.erl b/test/rebar_edoc_SUITE_data/foo/apps/bar1/src/bar1.erl
new file mode 100644
index 0000000..2700aef
--- /dev/null
+++ b/test/rebar_edoc_SUITE_data/foo/apps/bar1/src/bar1.erl
@@ -0,0 +1,9 @@
+-module(bar1).
+-export([bar1/0]).
+-export_type([barer1/0]).
+
+-type barer1() :: string().
+
+% @doc Bar1 bars the bar.
+-spec bar1() -> barer1().
+bar1() -> "Barer1". \ No newline at end of file