diff options
author | Björn Gustavsson <[email protected]> | 2019-04-10 15:18:45 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2019-04-10 15:18:45 +0200 |
commit | 326c3cb70c1b37c794b781a42c50725766098810 (patch) | |
tree | 2318463c0c3f1cedf06013fdf16b3452b2bf8ef8 /lib/stdlib/test | |
parent | 1edbf63cf20b44d2bdc9370427ee2575f07f642d (diff) | |
parent | 23a497af427493b94739761e4d4974e12bc67579 (diff) | |
download | otp-326c3cb70c1b37c794b781a42c50725766098810.tar.gz otp-326c3cb70c1b37c794b781a42c50725766098810.tar.bz2 otp-326c3cb70c1b37c794b781a42c50725766098810.zip |
Merge pull request #2205 from bjorng/bjorn/record_info/ERL-907
Issue an error for improper use of record_info/2 in a fun
OTP-15760
Diffstat (limited to 'lib/stdlib/test')
-rw-r--r-- | lib/stdlib/test/erl_lint_SUITE.erl | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/stdlib/test/erl_lint_SUITE.erl b/lib/stdlib/test/erl_lint_SUITE.erl index 939cc1024c..fe98a3796d 100644 --- a/lib/stdlib/test/erl_lint_SUITE.erl +++ b/lib/stdlib/test/erl_lint_SUITE.erl @@ -3576,10 +3576,12 @@ basic_errors(Config) -> {illegal_record_info, <<"f1() -> record_info(42, record). - f2() -> record_info(shoe_size, record).">>, + f2() -> record_info(shoe_size, record). + f3() -> fun record_info/2.">>, [], {errors,[{1,erl_lint,illegal_record_info}, - {2,erl_lint,illegal_record_info}],[]}}, + {2,erl_lint,illegal_record_info}, + {3,erl_lint,illegal_record_info}],[]}}, {illegal_expr, <<"f() -> a:b.">>, |