aboutsummaryrefslogtreecommitdiffstats
path: root/lib/stdlib/test/ms_transform_SUITE.erl
diff options
context:
space:
mode:
authorHans Bolinder <[email protected]>2015-11-27 14:14:07 +0100
committerHans Bolinder <[email protected]>2016-02-17 12:58:19 +0100
commit173b217a37fbb7439857a833d25ea0703e97ea2b (patch)
tree32247369e60192d752de1463e18945923c350bf5 /lib/stdlib/test/ms_transform_SUITE.erl
parentde9012628a6b0e97d2f1325bf2f72817f69f84ee (diff)
downloadotp-173b217a37fbb7439857a833d25ea0703e97ea2b.tar.gz
otp-173b217a37fbb7439857a833d25ea0703e97ea2b.tar.bz2
otp-173b217a37fbb7439857a833d25ea0703e97ea2b.zip
stdlib: Update ms_transform to handle typed record fields
Diffstat (limited to 'lib/stdlib/test/ms_transform_SUITE.erl')
-rw-r--r--lib/stdlib/test/ms_transform_SUITE.erl6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/stdlib/test/ms_transform_SUITE.erl b/lib/stdlib/test/ms_transform_SUITE.erl
index f02e82b39c..5f2167b609 100644
--- a/lib/stdlib/test/ms_transform_SUITE.erl
+++ b/lib/stdlib/test/ms_transform_SUITE.erl
@@ -1,7 +1,7 @@
%%
%% %CopyrightBegin%
%%
-%% Copyright Ericsson AB 2003-2011. All Rights Reserved.
+%% Copyright Ericsson AB 2003-2015. All Rights Reserved.
%%
%% Licensed under the Apache License, Version 2.0 (the "License");
%% you may not use this file except in compliance with the License.
@@ -342,8 +342,8 @@ records(doc) ->
records(Config) when is_list(Config) ->
?line setup(Config),
?line RD = <<"-record(t, {"
- "t1 = [],"
- "t2 = foo,"
+ "t1 = [] :: list(),"
+ "t2 = foo :: atom(),"
"t3,"
"t4"
"}).">>,