brintos

brintos / llvm-project-archived public Read only

0
0
Text · 240 B · f355e41 Raw
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