mirror of
https://github.com/Kitware/CMake.git
synced 2025-06-23 12:50:54 +08:00
8 lines
116 B
C++
8 lines
116 B
C++
// Include code from a header that should not be compiled separately.
|
|
#include "A.hh"
|
|
|
|
int main()
|
|
{
|
|
return A();
|
|
}
|