First Commit
This commit is contained in:
10
externals/cryptopp/TestPrograms/test_cxx11_deletefn.cpp
vendored
Normal file
10
externals/cryptopp/TestPrograms/test_cxx11_deletefn.cpp
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
struct S {
|
||||
S() = delete;
|
||||
explicit S(int n) { }
|
||||
};
|
||||
|
||||
int main (int argc, char* rgv[])
|
||||
{
|
||||
S s(1);
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user