You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
348 B
20 lines
348 B
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
// pr7390
|
|
|
|
void f(const SEL& v2) {}
|
|
void g(SEL* _Nonnull);
|
|
void h() {
|
|
f(@selector(dealloc));
|
|
|
|
SEL s = @selector(dealloc);
|
|
SEL* ps = &s;
|
|
|
|
@selector(dealloc) = s; // expected-error {{expression is not assignable}}
|
|
|
|
SEL* ps2 = &@selector(dealloc);
|
|
|
|
// Shouldn't crash.
|
|
g(&@selector(foo));
|
|
}
|
|
|