aboutsummaryrefslogtreecommitdiff
path: root/packages/Python/lldbsuite/test/lang/cpp/limit-debug-info/main.cpp
blob: 64e0349b582689579e22ce1576da0922d6350ec5 (plain) (blame)
1
2
3
4
5
6
7
#include "derived.h"

int main() {
    Foo f; // break here
    f.bar();
    return f.baz();
}