mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-02-11 06:34:16 +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;
|
||
|
}
|