summaryrefslogtreecommitdiff
path: root/gcc/testsuite/obj-c++.dg/typedef-alias-1.mm
blob: 79db8765ead812ec919eacf55826d0ad4468c44b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* Typedefs of ObjC types should work without any bogus warnings. */
/* { dg-do compile } */

#include "../objc-obj-c++-shared/Object1.h"

typedef Object MyObject;

int main (int argc, const char * argv[])
{
    Object* a = nil;
    MyObject* b = a;
    Object* c = b;

    return 0;
}