reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    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;