blob: c43b43b89e395b5a68d6f653156c08274f475c19 [file] [log] [blame]
// Copyright 2021 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
library manual.conformance.large;
/// A table with a large field [`filler`] which causes envelopes of the
/// subsequent tables to cross over 64 KiB.
type LargeTable = table {
1: filler vector<uint8>;
2: overflow table {
1: placeholder array<uint8, 100>;
};
};