Clang Project

clang_source_code/test/Modules/Inputs/submodule-visibility/other.h
1#include "c.h"
2
3#ifndef OTHER_H
4#define OTHER_H
5namespace N {
6  struct C {
7    template<typename U> static void f(U) {}
8  };
9}
10#endif
11