diff options
author | Hans Bolinder <[email protected]> | 2014-04-09 09:28:46 +0200 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2014-04-29 09:16:53 +0200 |
commit | 7ad783d431738c42fa9ce395fbc776916d927eb6 (patch) | |
tree | 065069662aa6a42d69596db105af0cc760b74cea /lib/stdlib/test/erl_pp_SUITE.erl | |
parent | 847e7291b2800ebd7e188be6e88114fb1e8900ce (diff) | |
download | otp-7ad783d431738c42fa9ce395fbc776916d927eb6.tar.gz otp-7ad783d431738c42fa9ce395fbc776916d927eb6.tar.bz2 otp-7ad783d431738c42fa9ce395fbc776916d927eb6.zip |
Allow more type names
product/_, union/_, range/2 as well as tuple/N (N > 0), map/N (N > 0),
atom/1, integer/1, binary/2, record/_, and 'fun'/_ can now be used as
type names.
Diffstat (limited to 'lib/stdlib/test/erl_pp_SUITE.erl')
-rw-r--r-- | lib/stdlib/test/erl_pp_SUITE.erl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/stdlib/test/erl_pp_SUITE.erl b/lib/stdlib/test/erl_pp_SUITE.erl index d0892c6d79..12817943d0 100644 --- a/lib/stdlib/test/erl_pp_SUITE.erl +++ b/lib/stdlib/test/erl_pp_SUITE.erl @@ -874,6 +874,7 @@ type_examples() -> {ex3,<<"-type paren() :: (ann2()). ">>}, {ex4,<<"-type t1() :: atom(). ">>}, {ex5,<<"-type t2() :: [t1()]. ">>}, + {ex56,<<"-type integer(A) :: A. ">>}, {ex6,<<"-type t3(Atom) :: integer(Atom). ">>}, {ex7,<<"-type '\\'t::4'() :: t3('\\'foobar'). ">>}, {ex8,<<"-type t5() :: {t1(), t3(foo)}. ">>}, |