bolt/deps/llvm-18.1.8/lldb/test/API/functionalities/set-data/main.m

20 lines
369 B
Mathematica
Raw Normal View History

2025-02-14 19:21:04 +01:00
#import <Foundation/Foundation.h>
int main ()
{
@autoreleasepool
{
struct foo {
int x;
int y;
} myFoo;
myFoo.x = 2;
myFoo.y = 3; // First breakpoint
NSString *string = [NSString stringWithFormat:@"%s", "Hello world!"];
NSLog(@"%d %@", myFoo.x, string); // Second breakpoint
}
}