Be careful about comdat boundary in ICF (PR ipa/82352).
[official-gcc.git] / gcc / testsuite / g++.dg / asan / use-after-scope-1.C
blobfd875ad7a13cb57635cb6c336aec75a87f1137d3
1 // { dg-do run }
2 // { dg-shouldfail "asan" }
4 #include <functional>
6 int main() {
7   std::function<int()> function;
8   {
9     int v = 0;
10     function = [&v]()
11     {
12       return v;
13     };
14   }
15   return function();
19 // { dg-output "ERROR: AddressSanitizer: stack-use-after-scope on address.*(\n|\r\n|\r)" }
20 // { dg-output "READ of size 4 at.*" }
21 // { dg-output ".*'v' <== Memory access at offset \[0-9\]* is inside this variable.*" }