// SPDX-License-Identifier: LGPL-3.0-only // SPDX-FileCopyrightText: Copyright (C) 2026 Catcrafts® export module Base; import std; export namespace Demo { class Payload { public: // The whole point of the fixture: `first` moves, and nothing about any // signature or mangled name changes with it. std::array padding{}; std::int32_t first = 1; void Stamp(); }; }