diff options
author | Hans Bolinder <[email protected]> | 2015-12-07 13:24:00 +0100 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2015-12-15 08:55:07 +0100 |
commit | 2af883c62efe6bae1bf9013783f43a5b9848c237 (patch) | |
tree | 7abceb47dc0a917ef8181b98a2ac3950a6cf22cf /lib/stdlib/test/erl_pp_SUITE.erl | |
parent | 291f263dfa099bcb4022581b9cc3e4e9473aba2f (diff) | |
download | otp-2af883c62efe6bae1bf9013783f43a5b9848c237.tar.gz otp-2af883c62efe6bae1bf9013783f43a5b9848c237.tar.bz2 otp-2af883c62efe6bae1bf9013783f43a5b9848c237.zip |
stdlib: Remove undocumented function specification syntax
The syntax -spec/callback F/A :: FunctionType; has been removed.
No deprecation was deemed necessary.
Diffstat (limited to 'lib/stdlib/test/erl_pp_SUITE.erl')
-rw-r--r-- | lib/stdlib/test/erl_pp_SUITE.erl | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/stdlib/test/erl_pp_SUITE.erl b/lib/stdlib/test/erl_pp_SUITE.erl index 8cdd2ceca9..d0de600a1d 100644 --- a/lib/stdlib/test/erl_pp_SUITE.erl +++ b/lib/stdlib/test/erl_pp_SUITE.erl @@ -1000,18 +1000,10 @@ otp_8567(Config) when is_list(Config) -> "t() ->\n" " 3.\n" "\n" - "-spec(t1/1 :: (ot()) -> ot1()).\n" - "t1(A) ->\n" - " A.\n" - "\n" "-spec(t2 (ot()) -> ot1()).\n" "t2(A) ->\n" " A.\n" "\n" - "-spec(otp_8567:t3/1 :: (ot()) -> ot1()).\n" - "t3(A) ->\n" - " A.\n" - "\n" "-spec(otp_8567:t4 (ot()) -> ot1()).\n" "t4(A) ->\n" " A.\n">>, |