4520165758d510a3e6713cbac40871394f90baa6
[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 typedef int Foo;
10
11 int main() {
12         int lval = 1;
13         Foo* x = &lval;
14         Foo& y = lval;
15         Foo&& z = 1;
16         return 0; // Set breakpoint here
17 }
18