mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-30 05:35:31 +00:00
af526bfc6d
--HG-- rename : tools/check-moz-style/check-moz-style => tools/check-moz-style/checkmozstyle.py extra : commitid : ASOuDmW8fdP extra : rebase_source : f39b3c59f62f03dad13f7a9ca9e0353f76657aa0
25 lines
340 B
C++
25 lines
340 B
C++
// License bogus
|
|
|
|
// runtime/virtual
|
|
class ShouldHaveVirtualDes {
|
|
virtual foo();
|
|
};
|
|
|
|
int main() {
|
|
// runtime/memset
|
|
memset(blah, sizeof(blah), 0);
|
|
|
|
// runtime/rtti
|
|
dynamic_cast<Derived*>(obj);
|
|
|
|
// runtime/sizeof
|
|
int varname = 0;
|
|
int mySize = sizeof(int);
|
|
|
|
// runtime/threadsafe_fn
|
|
getpwuid();
|
|
strtok();
|
|
|
|
return 0;
|
|
}
|