ASAN: emit line information of stack variables.
[official-gcc.git] / gcc / testsuite / g++.dg / asan / use-after-scope-1.C
blob4cbc5345b577d947bc6598460a605b4585e023d8
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' \\(line 9\\) <== Memory access at offset \[0-9\]* is inside this variable.*" }