[MLIR][TOSA] Update CustomOp input and output names (#118408)
[llvm-project.git] / clang / test / SemaObjCXX / Inputs / nullability-consistency-smart.h
blob5ff974af57f49b9ab0ed6d5c99d2778c7beb05cc
1 class _Nullable Smart;
3 void f1(int * _Nonnull);
5 void f2(Smart); // OK, not required on smart-pointer types
6 using Alias = Smart;
7 void f3(Alias);
9 template <class T> class _Nullable SmartTmpl;
10 void f2(SmartTmpl<int>);
11 template <class T> void f2(SmartTmpl<T>);