0f922b31352480a675915df097250fcfb1a4146f
[openbsd] /
1 //===-- main.cpp ------------------------------------------------*- 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
9 #include <stdio.h>
10 #include <stdlib.h>
11 #include <stdint.h>
12
13 struct Point {
14     int x;
15     int y;
16     Point(int X = 3, int Y = 2) : x(X), y(Y) {}
17 };
18
19 Point g_point(3,4);
20 Point* g_point_pointer = new Point(7,5);
21
22 int main (int argc, const char * argv[])
23 {
24     return 0; // Set break point at this line.
25 }
26