summaryrefslogtreecommitdiff
path: root/meson-cc-tests/check-unused-result.c
blob: ce7279ec8b2e1d14fdf344147ba2a26492219b51 (plain)
1
2
3
4
5
6
7
8
9
__attribute__((__warn_unused_result__)) void f (void) {}
__attribute__((__warn_unused_result__)) int g;

int main(int c, char **v)
{
    (void)c;
    (void)v;
    return 0;
}