repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[MLIR][TOSA] Update CustomOp input and output names (#118408)
[llvm-project.git]
/
clang
/
test
/
SemaObjCXX
/
Inputs
/
nullability-consistency-smart.h
blob
5ff974af57f49b9ab0ed6d5c99d2778c7beb05cc
1
class
_Nullable Smart
;
2
3
void
f1
(
int
*
_Nonnull
);
4
5
void
f2
(
Smart
);
// OK, not required on smart-pointer types
6
using
Alias
=
Smart
;
7
void
f3
(
Alias
);
8
9
template
<
class
T
>
class
_Nullable SmartTmpl
;
10
void
f2
(
SmartTmpl
<
int
>);
11
template
<
class
T
>
void
f2
(
SmartTmpl
<
T
>);