summaryrefslogtreecommitdiff
path: root/test/SemaObjCXX/nullptr.mm
blob: 73a921e8c895cd195d663d5e42ce9e9cfc6fc130 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// 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;