forked from OSchip/llvm-project
Added a testcase for defining and using lambdas in the expression parser.
<rdar://problem/25739133> llvm-svn: 266397
This commit is contained in:
parent
eb1e321239
commit
812e559589
|
@ -0,0 +1,4 @@
|
||||||
|
from lldbsuite.test import lldbinline
|
||||||
|
from lldbsuite.test import decorators
|
||||||
|
|
||||||
|
lldbinline.MakeInlineTest(__file__, globals(), [])
|
|
@ -0,0 +1,17 @@
|
||||||
|
//===-- main.cpp ------------------------------------------------*- C++ -*-===//
|
||||||
|
//
|
||||||
|
// The LLVM Compiler Infrastructure
|
||||||
|
//
|
||||||
|
// This file is distributed under the University of Illinois Open Source
|
||||||
|
// License. See LICENSE.TXT for details.
|
||||||
|
//
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
|
int main (int argc, char const *argv[])
|
||||||
|
{
|
||||||
|
printf("Stop here\n"); //% self.runCmd("expression auto $add = [](int a, int b) { return a + b };")
|
||||||
|
//% self.expect("expression $add(2,3)", substrs = ['= 5'])
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in New Issue