nixpkgs/pkgs/test/cc-wrapper/cxx-main.cc

8 lines
103 B
C++
Raw Permalink Normal View History

#include <iostream>
int main(int argc, char **argv)
{
std::cerr << "ok" << std::endl;
return 0;
}