1 //===-- main.cpp ------------------------------------------------*- C++ -*-===//
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
7 //===----------------------------------------------------------------------===//
16 Point(int X = 3, int Y = 2) : x(X), y(Y) {}
20 Point* g_point_pointer = new Point(7,5);
22 int main (int argc, const char * argv[])
24 return 0; // Set break point at this line.