mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-08 04:09:03 +02:00
7 lines
141 B
C++
7 lines
141 B
C++
#include "structures.h"
|
|
|
|
extern const std::string& constReference();
|
|
|
|
void foo() {
|
|
const std::string UnnecessaryCopy = constReference();
|
|
}
|