1 //===-- main.c --------------------------------------------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 #include <stdio.h>
9 
10 namespace abc {
11 	int g_file_global_int = 42;
12 }
13 
14 int main (int argc, char const *argv[])
15 {
16     return abc::g_file_global_int; // Set break point at this line.
17 }
18