| 1 | int i; |
|---|---|
| 2 | struct F { |
| 3 | int &r; |
| 4 | F() : r(i) {} |
| 5 | }; |
| 6 | template <class T> struct unique_ptr { |
| 7 | F i; |
| 8 | unique_ptr() : i() {//%self.dbg.GetCommandInterpreter().HandleCompletion("e ", len("e "), 0, -1, lldb.SBStringList()) |
| 9 | } |
| 10 | }; |
| 11 | int main() {unique_ptr<F> u; } |
| 12 |
