Sign in
fuchsia
/
third_party
/
swift-clang
/
a40ea3abe6e2f0b338d00c38fe7d724241c5af97
/
.
/
test
/
SemaObjC
/
restrict-id-type.m
blob: 24f74c93a027d21f670a259b6875057629d68eba [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -std=gnu99 -fsyntax-only -verify %s
// expected-no-diagnostics
void
f0
(
restrict id a0
)
{}
void
f1
(
restrict id
*
a0
)
{}
void
f2
(
restrict
Class
a0
)
{}
void
f3
(
restrict
Class
*
a0
)
{}