blob: 7274c193f3fb9b1d31a8ab3bf549b9e148a5de7f [file] [log] [blame]
/* Test __attribute__((unavailable)). */
/* { dg-do compile } */
/* { dg-options "" } */
void func(void);
void func(void) __attribute__((unavailable));
void f(void) {
func(); /* { dg-error "'func' is unavailable" } */
}