ASAN: emit line information of stack variables.
[platform/upstream/linaro-gcc.git] / gcc / testsuite / g++.dg / asan / use-after-scope-1.C
1 // { dg-do run }
2 // { dg-shouldfail "asan" }
3
4 #include <functional>
5
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();
16 }
17
18
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.*" }