Clang Project

clang_source_code/test/Sema/attr-alias.c
1// RUN: %clang_cc1 -triple x86_64-apple-darwin  -fsyntax-only -verify %s
2
3void g() {}
4
5void f() __attribute__((alias("g"))); //expected-error {{aliases are not supported on darwin}}
6