aboutsummaryrefslogtreecommitdiff
path: root/test/multiple_inclusion_1.cxx
blob: b831d0a40238d490798b0c695f6d6fc8c9add4b9 (plain)
1
2
3
4
5
6
#include <args.hxx>

int foo() { return 42; }
int bar();

int main() { return foo() - bar(); }