mirror of
https://github.com/shadps4-emu/ext-cryptopp.git
synced 2024-11-27 03:40:22 +00:00
11 lines
132 B
C++
11 lines
132 B
C++
struct S {
|
|
S() = delete;
|
|
explicit S(int n) { }
|
|
};
|
|
|
|
int main (int argc, char* rgv[])
|
|
{
|
|
S s(1);
|
|
return 0;
|
|
}
|