diff options
author | Fred Hebert <mononcqc@ferd.ca> | 2017-01-27 22:32:14 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-27 22:32:14 -0500 |
commit | 9f4017f6d3c1fef1b05b45476e66a18a3ea31913 (patch) | |
tree | 92dea83e69ed2b9717981c2838adf82c501cbce1 /test/rebar_edoc_SUITE_data/bad/apps/foo/src/foo.erl | |
parent | abff9dfff34e04bd23b1f178eadee4d8770de9a9 (diff) | |
parent | ba954cfb43f0b05e15ee206b13488d62c3537267 (diff) |
Merge pull request #1458 from ferd/survive-edoc-crashes
Survive EDoc crashes
Diffstat (limited to 'test/rebar_edoc_SUITE_data/bad/apps/foo/src/foo.erl')
-rw-r--r-- | test/rebar_edoc_SUITE_data/bad/apps/foo/src/foo.erl | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/test/rebar_edoc_SUITE_data/bad/apps/foo/src/foo.erl b/test/rebar_edoc_SUITE_data/bad/apps/foo/src/foo.erl new file mode 100644 index 0000000..52e3d0a --- /dev/null +++ b/test/rebar_edoc_SUITE_data/bad/apps/foo/src/foo.erl @@ -0,0 +1,19 @@ +-module(foo).
+
+-export([foo/0, bar1/0, bar2/0]).
+
+-export_type([fooer/0]).
+
+-type fooer() :: string().
+
+% @doc Foo function returns fooer.
+-spec foo() -> fooer().
+foo() -> "fooer".
+
+% @doc Bar1 function returns barer1.
+-spec bar1() -> bar1:barer1().
+bar1() -> bar1:bar1().
+
+% @doc Bar2 functions returns barer2.
+-spec bar2() -> bar2:barer2().
+bar2() -> bar2:bar2().
\ No newline at end of file |