1#include "foo.h"
2
3template <typename T> struct bar {
4 T a;
5};
6
7int main() {
8 bar<int> b{.a: 47};
9
10 foo(bar_ptr: &b);
11
12 return 0;
13}
14

source code of lldb/test/API/lang/cpp/forward/main.cpp