diff options
author | Björn Gustavsson <[email protected]> | 2010-08-03 16:48:07 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2010-08-03 16:48:07 +0200 |
commit | 2257135c992df32554abbb996b028fdbbda39343 (patch) | |
tree | bf43ee9ac96f83272044b08898d835a8337f9aaa /lib/compiler/test/compilation_SUITE_data | |
parent | 1e578bf7f9bfdb8c488d2f5837d2041cc3ddf5ba (diff) | |
parent | 173d1fd1c3fef385f73accc4b2bbb1b6f92ac3f5 (diff) | |
download | otp-2257135c992df32554abbb996b028fdbbda39343.tar.gz otp-2257135c992df32554abbb996b028fdbbda39343.tar.bz2 otp-2257135c992df32554abbb996b028fdbbda39343.zip |
Merge branch 'pg/optimize_beam_dict_string_table' into dev
Diffstat (limited to 'lib/compiler/test/compilation_SUITE_data')
-rw-r--r-- | lib/compiler/test/compilation_SUITE_data/string_table.erl | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/compiler/test/compilation_SUITE_data/string_table.erl b/lib/compiler/test/compilation_SUITE_data/string_table.erl new file mode 100644 index 0000000000..1da1d015dd --- /dev/null +++ b/lib/compiler/test/compilation_SUITE_data/string_table.erl @@ -0,0 +1,8 @@ +-module(string_table). +-export([f/1, g/1]). + +f(<<"string">>) -> string; +f(<<"stringtable">>) -> stringtable. + +g(<<"stringtable">>) -> stringtable; +g(<<"table">>) -> table. |