forked from qt-creator/qt-creator
9 lines
159 B
C++
9 lines
159 B
C++
![]() |
class C {
|
||
|
C() = default;
|
||
|
C(const C &) = delete;
|
||
|
C &operator=(const C &) = default;
|
||
|
|
||
|
void foo() = delete;
|
||
|
template <class T> void bar(T) = delete;
|
||
|
};
|