aboutsummaryrefslogtreecommitdiff
path: root/tests/core/cgo/bar.cc
blob: d72f512384d6050cc93978c5f73a9b706402d5af (plain)
1
2
3
4
5
6
7
8
9
#include <iostream>

extern "C" {

void bar() {
  std::cout << "bar" << std::endl;
}

}