certificate/include/cryptopp/TestPrograms/test_cxx11_deletefn.cpp

11 lines
122 B
C++
Raw Permalink Normal View History

2025-06-26 15:15:38 +00:00
struct S {
S() = delete;
explicit S(int n) { }
};
int main (int argc, char* rgv[])
{
S s(1);
return 0;
}