summaryrefslogtreecommitdiff
path: root/test/SemaObjC/comptypes-6.m
blob: 98cf488792123e579ef665d48c98a25ae71a9a17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// RUN: %clang_cc1 -fsyntax-only -verify -pedantic %s

@interface Derived
@end

@interface Object @end

extern Object* foo(void);

static Derived *test(void)
{
   Derived *m = foo();   // expected-warning {{incompatible pointer types initializing 'Derived *' with an expression of type 'Object *'}}

   return m;
}