view gcc/testsuite/g++.dg/warn/deprecated-9.C @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

// PR c++/65974
// { dg-options "-Wdeprecated" }

struct S {
    void bar();

    __attribute__((deprecated("use bar() instead.")))
    virtual void foo();
};

void S::foo() { bar(); }

int main()
{
    return 0;
}