nixpkgs/pkgs/test/cc-wrapper/cxx-main.cc
Daiderd Jordan 6e8d22e851
nixpkgs-tests: add basic test for cc-wrapper
(cherry picked from commit 19c4673310)
2017-09-10 22:56:40 +02:00

7 lines
103 B
C++

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