Files
carbon-lang/toolchain/check/testdata/interop/cpp/class/export/layout.carbon
T
Nicholas Bishop f3f039516e Support accessing Carbon class fields from C++ (#7119)
When any field of a Carbon class is access from C++ for the first time,
all fields are exported as `clang::FieldDecl`s (this is necessary
because clang fields have an internal index that is initialized on first
use).

`ClangDeclStore` now provides bidirectional mapping. This allows looking
up a `ClangDeclId` by `InstId`, so when Carbon class fields are exported
they can be looked up that way.
2026-04-29 20:07:10 +00:00

50 lines
1.1 KiB
Plaintext

// 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/layout.carbon
// TIP: To dump output, run:
// TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/interop/cpp/class/export/layout.carbon
// --- simple.carbon
library "[[@TEST_NAME]]";
import Cpp;
class C {
var a: i32;
var b: i32;
var c: i32;
}
inline Cpp '''c++
static_assert(sizeof(Carbon::C) == 12);
static_assert(alignof(Carbon::C) == 4);
''';
// --- packed.carbon
library "[[@TEST_NAME]]";
import Cpp;
class C {
var a: i32*;
var b: i32;
}
class D {
var c: C;
var d: i32;
}
inline Cpp '''c++
static_assert(sizeof(Carbon::C) == 12);
static_assert(alignof(Carbon::C) == 8);
static_assert(sizeof(Carbon::D) == 16);
static_assert(alignof(Carbon::D) == 8);
''';