brintos

brintos / llvm-project-archived public Read only

0
0
Text · 374 B · 0c4d926 Raw
10 lines · c
1// RUN: %clang_cc1 -fsyntax-only -verify -triple x86_64-pc-linux-gnu %s2 3void __attribute__((ms_abi)) foo(void);4void (*pfoo)(void) = foo; // expected-error{{incompatible function pointer types}}5 6void __attribute__((sysv_abi)) bar(void);7void (*pbar)(void) = bar;8 9void (__attribute__((ms_abi)) *pbar2)(void) = bar; // expected-error{{incompatible function pointer types}}10