1 //===-- main.c --------------------------------------------------*- 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 //===----------------------------------------------------------------------===//
15 foo() : a(0), b(1), c(3.14) {}
16 foo(uint32_t A
, uint32_t B
, float C
) :
23 int main (int argc
, char const *argv
[])
25 foo
* foobar
= new foo
[2];
33 foobar
[1].b
= 7; // set breakpoint here
37 foo barfoo
[] = {foo(1,2,3), foo(4,5,6)};