aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/Shell/Watchpoint/Inputs/languages.cpp
blob: 98b653f3d404a3080d25ccaa7d1ce53d3f9f1883 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <cstdint>
#include <iostream>

uint64_t g_foo = 5;
uint64_t g_bar = 6;
uint64_t g_baz = 7;

int main() {
  int val = 8;
  printf("Hello world! %d\n", val);
  return 0;
}