1// RUN: %clang_cc1 -fsyntax-only -Wunused -std=c++1z -verify %s2// expected-no-diagnostics3 4void f();5[[maybe_unused]] void f();6 7void f() {8}9