9 lines
143 B
C++
9 lines
143 B
C++
|
// RUN: %clang_cc1 -fsyntax-only -Wunused -std=c++1z -verify %s
|
||
|
// expected-no-diagnostics
|
||
|
|
||
|
void f();
|
||
|
[[maybe_unused]] void f();
|
||
|
|
||
|
void f() {
|
||
|
}
|