aboutsummaryrefslogtreecommitdiffstats
path: root/lib/dialyzer/test/small_SUITE_data/src
diff options
context:
space:
mode:
authorHans Bolinder <[email protected]>2019-04-24 09:52:54 +0200
committerHans Bolinder <[email protected]>2019-04-24 15:23:29 +0200
commit6d9d4af8725f26972481b2e997c54ee5b3eafb29 (patch)
tree57942b9705ea269315df5bcd6ef1555ba7051bae /lib/dialyzer/test/small_SUITE_data/src
parent5b56ecbe12493a1ff6a0e975a65cefd09005cecd (diff)
downloadotp-6d9d4af8725f26972481b2e997c54ee5b3eafb29.tar.gz
otp-6d9d4af8725f26972481b2e997c54ee5b3eafb29.tar.bz2
otp-6d9d4af8725f26972481b2e997c54ee5b3eafb29.zip
dialyzer: Improve the warning tagged 'fun_app_args'
The mismatching argument positions are included.
Diffstat (limited to 'lib/dialyzer/test/small_SUITE_data/src')
-rw-r--r--lib/dialyzer/test/small_SUITE_data/src/fun_app_args.erl12
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/dialyzer/test/small_SUITE_data/src/fun_app_args.erl b/lib/dialyzer/test/small_SUITE_data/src/fun_app_args.erl
new file mode 100644
index 0000000000..b4409bc550
--- /dev/null
+++ b/lib/dialyzer/test/small_SUITE_data/src/fun_app_args.erl
@@ -0,0 +1,12 @@
+-module(fun_app_args).
+
+-export([t/1]).
+
+-type ft() :: fun((a, []) -> any()).
+
+-record(r, {
+ h = c :: c | ft()
+}).
+
+t(#r{h = H}) ->
+ fun(_) -> (H)(b, []) end.