Clang Project
clang_source_code
/
test
/
SemaCXX
/
Inputs
/
nullability-completeness.h
1
template<typename T> struct Template final {
2
int *_Nonnull x;
3
T y;
4
};
5