summaryrefslogtreecommitdiffstats
path: root/test/SemaObjC/invalid-receiver.m
blob: 366f7140085689185da76ef080385f9d623b6ef4 (plain)
1
2
3
4
5
6
7
8
9
// RUN: clang -cc1 -fsyntax-only -verify %s

typedef struct NotAClass {
  int a, b;
} NotAClass;

void foo() {
  [NotAClass nonexistent_method]; // expected-error {{invalid receiver to message expression}}
}
OpenPOWER on IntegriCloud