summaryrefslogtreecommitdiffstats
path: root/lldb/packages/Python/lldbsuite/test/expression_command/completion-in-lambda-and-unnnamed-class/main.cpp
blob: a3d8ab6532e6e5462a4c73fcd552c3cf61801f31 (plain)
1
2
3
4
5
6
7
8
9
10
11
int main() {
  []()
  { //%self.dbg.GetCommandInterpreter().HandleCompletion("e ", len("e "), 0, -1, lldb.SBStringList())
  }
  ();
  struct {
      void f()
      { //%self.dbg.GetCommandInterpreter().HandleCompletion("e ", len("e "), 0, -1, lldb.SBStringList())
      }
  } A;
}
OpenPOWER on IntegriCloud