diff options
author | Björn Gustavsson <[email protected]> | 2017-12-07 04:57:51 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2017-12-08 12:41:11 +0100 |
commit | 60f76b0d58ec70850da37ff8fd02aebbca052389 (patch) | |
tree | 7d5e904a46c63c22087df3345bdd923a003ca69e | |
parent | d61fc50c7cc42628e68cacec33c54fb141fb25c4 (diff) | |
download | otp-60f76b0d58ec70850da37ff8fd02aebbca052389.tar.gz otp-60f76b0d58ec70850da37ff8fd02aebbca052389.tar.bz2 otp-60f76b0d58ec70850da37ff8fd02aebbca052389.zip |
guard_SUITE: Test is_bitstring/1 and is_map/1 on literals
-rw-r--r-- | lib/compiler/test/guard_SUITE.erl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/compiler/test/guard_SUITE.erl b/lib/compiler/test/guard_SUITE.erl index 7d2d58d5af..0d6f8c6f98 100644 --- a/lib/compiler/test/guard_SUITE.erl +++ b/lib/compiler/test/guard_SUITE.erl @@ -1621,7 +1621,9 @@ type_tests() -> is_reference, is_port, is_binary, - is_function]. + is_bitstring, + is_function, + is_map]. basic_andalso_orelse(Config) when is_list(Config) -> T = id({type,integers,23,42}), |