// Part of the Carbon Language project, under the Apache License v2.0 with LLVM // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // // AUTOUPDATE // CHECK:STDOUT: 0: Heap{}, 1: C{} // CHECK:STDOUT: Bind from c reference expression // CHECK:STDOUT: Binding scope end // CHECK:STDOUT: c destroyed // CHECK:STDOUT: 0: Heap{}, 1: C{}, 2: !!C{} // CHECK:STDOUT: c destroyed // CHECK:STDOUT: result: 0 package ExplorerTest api; class C { destructor[self: Self] { Print("c destroyed"); } } fn CallWithReferenceExpressionBinding(var c: C) { Print("Binding scope end"); } fn Main() -> i32 { var c_var: C = {}; heap.PrintAllocs(); Print("Bind from c reference expression"); CallWithReferenceExpressionBinding(c_var); heap.PrintAllocs(); return 0; }