mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-13 06:38:48 +02:00
MozReview-Commit-ID: IWxzKfWNIHG --HG-- extra : rebase_source : d2bd65c66541e5d6e8d5cc721b117f0a3e7716e8
13 lines
No EOL
237 B
C++
13 lines
No EOL
237 B
C++
#include "structures.h"
|
|
|
|
extern void fstring(std::string);
|
|
|
|
void foo() {
|
|
std::string mystr1, mystr2;
|
|
auto myautostr1 = mystr1;
|
|
auto myautostr2 = mystr2;
|
|
|
|
for (int i = 0; i < 10; ++i) {
|
|
fstring(mystr1 + mystr2 + mystr1);
|
|
}
|
|
} |