86ee8d5a8e8cd20877397022a6f7ac6084406c53
[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 struct S {
10   int x;
11   int y;
12   
13   S() : x(123), y(456) {}
14 };
15
16 int main() {
17   S object;
18   return 0; // break here
19 }