diff options
Diffstat (limited to 'Tests/ComplexRelativePaths/Executable/A.cxx')
-rw-r--r-- | Tests/ComplexRelativePaths/Executable/A.cxx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Tests/ComplexRelativePaths/Executable/A.cxx b/Tests/ComplexRelativePaths/Executable/A.cxx index 7f98319..0cc995a 100644 --- a/Tests/ComplexRelativePaths/Executable/A.cxx +++ b/Tests/ComplexRelativePaths/Executable/A.cxx @@ -1,4 +1,7 @@ +// Include code from a header that should not be compiled separately. +#include "A.hh" + int main() { - return 10; + return A(); } |