Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Te
//clang 3.8.0 #include <iostream> struct A { A(); A(const A bitand) { std::cout<<"A(const A &)\n"; } A(A and) { std::cout<<"A(A &&)\n"; } compl A() { std::cout<<"~A()\n"; } A bitand operator=(const A bitand) bitand { std::cout<<"A& operator=(const A &)\n";} }; auto main() -> int {}
run
|
edit
|
history
|
help
0
Specialization on signed types
regex
Enum flags operator example
Throttle Example (Send two requests every two seconds)
Narrowing error
range based for loop temporary object lifetime issue example
34534
boost tokenizer
numeric_limits
auto Keyword Example