-module(bug).
-compile(export_all).
start() ->
lists:filter(fun is_reference/1, [1,2,3]).
%% this program compiles correctly
%% it should fail with a missing function
%%
%% seems like there is a name collision with the guard test with the same name
%%
/Joe