opnsense-src/test/SemaCXX/attr-unavailable.cpp

21 lines
787 B
C++
Raw Normal View History

2010-01-01 05:34:51 -05:00
// RUN: %clang_cc1 -fsyntax-only -verify %s
2009-06-02 13:58:47 -04:00
2010-01-15 10:39:40 -05:00
int &foo(int); // expected-note {{candidate}}
double &foo(double); // expected-note {{candidate}}
2009-06-02 13:58:47 -04:00
void foo(...) __attribute__((__unavailable__)); // expected-note {{candidate function}} \
// expected-note{{function has been explicitly marked unavailable here}}
void bar(...) __attribute__((__unavailable__)); // expected-note 2{{explicitly marked unavailable}}
void test_foo(short* sp) {
int &ir = foo(1);
double &dr = foo(1.0);
foo(sp); // expected-error{{call to unavailable function 'foo'}}
void (*fp)(...) = &bar; // expected-warning{{'bar' is unavailable}}
void (*fp2)(...) = bar; // expected-warning{{'bar' is unavailable}}
int &(*fp3)(int) = foo;
void (*fp4)(...) = foo; // expected-warning{{'foo' is unavailable}}
}