summaryrefslogtreecommitdiff
path: root/lib/compiler/test/compilation_SUITE_data/string_table.erl
blob: 1da1d015ddacb9a1461c67e8892fcbd3d4950504 (plain)
1
2
3
4
5
6
7
8
-module(string_table).
-export([f/1, g/1]).

f(<<"string">>) -> string;
f(<<"stringtable">>) -> stringtable.

g(<<"stringtable">>) -> stringtable;
g(<<"table">>) -> table.