10 lines
172 B
C++
Raw Normal View History

// Include code from a header that should not be compiled separately.
#include "A.hh"
2012-04-19 19:04:21 +03:00
#include <stdio.h>
int main()
{
2012-04-19 19:04:21 +03:00
printf("#define A_VALUE %d\n", A());
return 0;
}