Wandbox
SettingsLog
SettingsLog
Language
GitHubLogin
Ran/Viewed Log

Author

anonymous

over 5 years ago

Language

C++

Compiler

clang HEAD 10.0.0 (https://github.com/llvm-mirror/clang.git 65acf43270ea2894dffa0d0b292b92402f80c8cb) (https://github.com/llvm-mirror/llvm.git 2c4ca6832fa6b306ee6a7010bfb80a3f2596f824)

Options
Warnings
Don't Use Boost
C++11
no pedantic

Author

anonymous

over 5 years ago

$ clang++ prog.cc -Wall -Wextra -std=c++11
prog.cc:5:5: error: call to deleted function 'f'
    f();
    ^
prog.cc:1:6: note: candidate function has been explicitly deleted
void f() = delete;
     ^
1 error generated.
Exit Code:
1