summaryrefslogtreecommitdiffstats
path: root/test/SemaObjC/id.m
blob: 1781ce71d9c3385115d00e1646804e8879529f10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// RUN: clang-cc -fsyntax-only -verify %s

@protocol Foo;

Class T;
id<Foo> S;
id R;
void foo() {
  // Test assignment compatibility of Class and id.  No warning should be
  // produced.
  // rdar://6770142 - Class and id<foo> are compatible.
  S = T; T = S;
  R = T; T = R;
  R = S; S = R;
}

// Test attempt to redefine 'id' in an incompatible fashion.
typedef int id;   // expected-error {{typedef redefinition with different types}}
id b;

OpenPOWER on IntegriCloud