summaryrefslogtreecommitdiffhomepage
path: root/test/test_samples/namespace_basic.cc
blob: 357304b0e2525eece9cb6dd7d7f1e5f63410eba3 (plain)
1
2
3
4
5
6
7
8
9
namespace Math {
int add() {
  return 5;
}
}  // namespace Math

int main() {
  return Math::add();
}