aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/API/lang/cpp/lambdas/main.cpp
blob: b8f85f113f95c206c98d52536fd179accc90b3cb (plain)
1
2
3
4
5
6
7
8
#include <stdio.h>

int main (int argc, char const *argv[])
{
    printf("Stop here\n"); //% self.runCmd("expression auto $add = [](int first, int second) { return first + second; }")
                           //% self.expect("expression $add(2,3)", substrs = ['= 5'])
    return 0;
}