Reviewed By: sblackshear Differential Revision: D7509019 fbshipit-source-id: 69d99a9master
parent
767606b98e
commit
3b608695af
@ -0,0 +1,52 @@
|
||||
/*
|
||||
* Copyright (c) 2018 - present Facebook, Inc.
|
||||
* All rights reserved.
|
||||
*
|
||||
* This source code is licensed under the BSD style license found in the
|
||||
* LICENSE file in the root directory of this source tree. An additional grant
|
||||
* of patent rights can be found in the PATENTS file in the same directory.
|
||||
*/
|
||||
#include <string>
|
||||
|
||||
struct InitializingStruct {
|
||||
size_t match1;
|
||||
size_t count1;
|
||||
|
||||
InitializingStruct();
|
||||
};
|
||||
|
||||
InitializingStruct::InitializingStruct() : match1(0), count1(0) {}
|
||||
|
||||
struct SemiInitializingStruct {
|
||||
size_t match1;
|
||||
size_t count1;
|
||||
|
||||
SemiInitializingStruct();
|
||||
};
|
||||
|
||||
SemiInitializingStruct::SemiInitializingStruct() : match1(0) {}
|
||||
|
||||
struct NonInitializingStruct {
|
||||
size_t match1;
|
||||
size_t count1;
|
||||
};
|
||||
|
||||
void foo(size_t, size_t){};
|
||||
|
||||
void init_OK() {
|
||||
InitializingStruct s;
|
||||
|
||||
foo(s.count1, s.match1);
|
||||
}
|
||||
|
||||
void FN_init() {
|
||||
SemiInitializingStruct s;
|
||||
|
||||
foo(s.count1, s.match1);
|
||||
}
|
||||
|
||||
void init_bad() {
|
||||
NonInitializingStruct s;
|
||||
|
||||
foo(s.count1, s.match1);
|
||||
}
|
Loading…
Reference in new issue