summaryrefslogtreecommitdiff
path: root/bindgen-tests/tests/headers/attribute_warn_unused_result_pre_1_27.hpp
blob: 25127d9cd0af8ce5a814fec3ebf7a904c987a969 (plain)
1
2
3
4
5
6
7
8
class Foo {
public:
    __attribute__((warn_unused_result))
    int foo(int);
};

__attribute__((warn_unused_result))
int foo(int);