diff options
Diffstat (limited to 'Tests/Complex/Executable/A.h')
-rw-r--r-- | Tests/Complex/Executable/A.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Tests/Complex/Executable/A.h b/Tests/Complex/Executable/A.h new file mode 100644 index 000000000..25c45fcbf --- /dev/null +++ b/Tests/Complex/Executable/A.h @@ -0,0 +1,4 @@ +// This header should not be compiled directly but through inclusion +// in A.cxx through A.hh. +extern int A(); +int A() { return 10; } |