summaryrefslogtreecommitdiff
path: root/test/Sema/typedef-retain.c
blob: 121e716844538f9bae4c523307d5ed18278213f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// RUN: clang -parse-ast -verify %s

typedef float float4 __attribute__((vector_size(16)));
typedef int int4 __attribute__((vector_size(16)));
typedef int4* int4p;

void test1(float4 a, int4 *result, int i) {
    result[i] = a; // expected-error {{assigning 'float4' to 'int4'}}
}

void test2(float4 a, int4p result, int i) {
    result[i] = a; // expected-error {{assigning 'float4' to 'int4'}}
}