2
0
Fork 0
mirror of https://github.com/bazelbuild/rules_cc synced 2024-11-28 21:34:00 +00:00
rules_cc/examples/test_cc_shared_library/diamond_inheritance/main.cc
2021-02-11 10:33:25 -07:00

9 lines
155 B
C++

#include <iostream>
#include "examples/test_cc_shared_library/a_suffix.h"
int main() {
std::cout << "hello " << a_suffix() << std::endl;
return 0;
}