]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/Sema/warn-freestanding-complex.c
Import Clang, at r72732.
[FreeBSD/FreeBSD.git] / test / Sema / warn-freestanding-complex.c
1 // RUN: clang-cc -fsyntax-only -ffreestanding -pedantic -verify %s
2
3 void foo(float _Complex c) { // expected-warning{{complex numbers are an extension in a freestanding C99 implementation}}
4 }