7 lines · cpp
1// RUN: %clang_cc1 -fsyntax-only -std=c++11 -verify %s2 3struct S {4 virtual void f() = delete; //expected-note{{'f' has been explicitly marked deleted here}}5 void g() { f(); } //expected-error{{attempt to use a deleted function}}6};7