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 //===----------------------------------------------------------------------===//
29 Second(int X, float Y) :
39 Third(int X, char Z) :
45 int main (int argc, const char * argv[])
48 Second second(65,43.25);
49 Third *third = new Third(96,'E');
51 first.dummy = 1; // Set break point at this line.