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.
18 lines
309 B
18 lines
309 B
4 months ago
|
// RUN: %clang_cc1 -std=c++11 -fblocks -fsyntax-only -verify %s
|
||
|
// expected-no-diagnostics
|
||
|
|
||
|
@interface A
|
||
|
@end
|
||
|
|
||
|
void comparisons(A *a) {
|
||
|
(void)(a == nullptr);
|
||
|
(void)(nullptr == a);
|
||
|
}
|
||
|
|
||
|
void assignment(A *a) {
|
||
|
a = nullptr;
|
||
|
}
|
||
|
|
||
|
int PR10145a = (void(^)())0 == nullptr;
|
||
|
int PR10145b = nullptr == (void(^)())0;
|