xref: /llvm-project/lldb/test/API/commands/expression/rdar44436068/main.c (revision 40766642283854d035a992513e314d59c1b4ca53)

main(void)1 int main(void)
2 {
3     __int128_t n = 1;
4     n = n + n;
5     return n; //%self.expect("expression n", substrs=['(__int128_t) $0 = 2'])
6               //%self.expect("expression n + 6", substrs=['(__int128_t) $1 = 8'])
7               //%self.expect("expression n + n", substrs=['(__int128_t) $2 = 4'])
8 }
9