| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- // 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
- //
- // INCLUDE-FILE: toolchain/testing/testdata/min_prelude/none.carbon
- //
- // AUTOUPDATE
- // TIP: To test this file alone, run:
- // TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/check/testdata/interop/cpp/class/struct.carbon
- // TIP: To dump output, run:
- // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/interop/cpp/class/struct.carbon
- // ============================================================================
- // Declaration
- // ============================================================================
- // --- declaration.h
- struct Bar;
- // --- import_declaration.carbon
- library "[[@TEST_NAME]]";
- import Cpp library "declaration.h";
- //@dump-sem-ir-begin
- fn MyF(bar: Cpp.Bar*);
- //@dump-sem-ir-end
- // CHECK:STDOUT: --- import_declaration.carbon
- // CHECK:STDOUT:
- // CHECK:STDOUT: constants {
- // CHECK:STDOUT: %Bar: type = class_type @Bar [concrete]
- // CHECK:STDOUT: %ptr: type = ptr_type %Bar [concrete]
- // CHECK:STDOUT: %pattern_type: type = pattern_type %ptr [concrete]
- // CHECK:STDOUT: %MyF.type: type = fn_type @MyF [concrete]
- // CHECK:STDOUT: %MyF: %MyF.type = struct_value () [concrete]
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: imports {
- // CHECK:STDOUT: %Cpp: <namespace> = namespace file.%Cpp.import_cpp, [concrete] {
- // CHECK:STDOUT: .Bar = %Bar.decl
- // CHECK:STDOUT: import Cpp//...
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %Bar.decl: type = class_decl @Bar [concrete = constants.%Bar] {} {}
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: file {
- // CHECK:STDOUT: %MyF.decl: %MyF.type = fn_decl @MyF [concrete = constants.%MyF] {
- // CHECK:STDOUT: %bar.patt: %pattern_type = value_binding_pattern bar [concrete]
- // CHECK:STDOUT: %bar.param_patt: %pattern_type = value_param_pattern %bar.patt, call_param0 [concrete]
- // CHECK:STDOUT: } {
- // CHECK:STDOUT: %bar.param: %ptr = value_param call_param0
- // CHECK:STDOUT: %.loc7: type = splice_block %ptr [concrete = constants.%ptr] {
- // CHECK:STDOUT: %Cpp.ref: <namespace> = name_ref Cpp, imports.%Cpp [concrete = imports.%Cpp]
- // CHECK:STDOUT: %Bar.ref: type = name_ref Bar, imports.%Bar.decl [concrete = constants.%Bar]
- // CHECK:STDOUT: %ptr: type = ptr_type %Bar.ref [concrete = constants.%ptr]
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %bar: %ptr = value_binding bar, %bar.param
- // CHECK:STDOUT: }
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @MyF(%bar.param: %ptr);
- // CHECK:STDOUT:
|