| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- // 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/int.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/export/class.carbon
- // TIP: To dump output, run:
- // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/interop/cpp/class/export/class.carbon
- // --- static_members.carbon
- library "[[@TEST_NAME]]";
- import Cpp;
- class A {
- fn F() {}
- }
- inline Cpp '''
- void G() {
- Carbon::A::F();
- }
- ''';
- // --- nested.carbon
- library "[[@TEST_NAME]]";
- import Cpp;
- class A {
- class B {
- class C {
- }
- }
- }
- inline Cpp '''
- void G() {
- Carbon::A::B::C *p = nullptr;
- }
- ''';
- // --- incomplete.carbon
- library "[[@TEST_NAME]]";
- import Cpp;
- class A;
- inline Cpp '''
- Carbon::A *p = nullptr;
- ''';
- // --- fail_incomplete_concrete.carbon
- library "[[@TEST_NAME]]";
- import Cpp;
- // CHECK:STDERR: fail_incomplete_concrete.carbon:[[@LINE+4]]:1: error: class was forward declared here [ClassForwardDeclaredHere]
- // CHECK:STDERR: class A;
- // CHECK:STDERR: ^~~~~~~~
- // CHECK:STDERR:
- class A;
- inline Cpp '''
- // CHECK:STDERR: fail_incomplete_concrete.carbon:[[@LINE+4]]:11: error: variable has incomplete type 'Carbon::A' [CppInteropParseError]
- // CHECK:STDERR: 16 | Carbon::A a;
- // CHECK:STDERR: | ^
- // CHECK:STDERR:
- Carbon::A a;
- ''';
- // --- fail_todo_monomorphization_failure.carbon
- library "[[@TEST_NAME]]";
- import Cpp;
- class B(N:! i32) {
- var a: array(i8, N);
- }
- // TODO: Once we allow this, we should produce an "invalid array bound" error
- // during monomorphization triggered by the C++ code.
- // CHECK:STDERR: fail_todo_monomorphization_failure.carbon:[[@LINE+4]]:11: error: alias initializer must be a name reference [AliasRequiresNameRef]
- // CHECK:STDERR: alias T = B(-1);
- // CHECK:STDERR: ^~~~~
- // CHECK:STDERR:
- alias T = B(-1);
- inline Cpp '''
- // CHECK:STDERR: fail_todo_monomorphization_failure.carbon:[[@LINE+4]]:9: error: no type named 'T' in namespace 'Carbon' [CppInteropParseError]
- // CHECK:STDERR: 22 | Carbon::T t;
- // CHECK:STDERR: | ~~~~~~~~^
- // CHECK:STDERR:
- Carbon::T t;
- ''';
|