Warning, file /sdk/clazy/tests/rule-of-three/bug388682.cpp was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 #include <stdio.h>
0002 
0003 class A
0004 {
0005 public:
0006     A() {}
0007     ~A() {}
0008 
0009     A(const A &) {}
0010     A& operator=(const A &) = delete;
0011 };
0012 
0013 int main(int, char *[])
0014 {
0015     A a;
0016 }