github.com/0xKiwi/rules_go@v0.24.3/tests/core/cgo/bar.cc (about)

     1  #include <iostream>
     2  
     3  extern "C" {
     4  
     5  void bar() {
     6    std::cout << "bar" << std::endl;
     7  }
     8  
     9  }