1// Must be a standard C++ header to implicitly test CMake not emitting -isystem for some imported targets: see #17132 2#include <iostream> 3#include <foo.h> 4 5int main() { 6 std::cout << "foo: " << foo() << std::endl; 7 return 0; 8} 9 10