blob: 42a10f3c638adcf6ac60ff0072dc1740a47078af [file] [log] [blame]
// Copyright 2019 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 conformance;
union UnionWithBoundString {
string:5 boundFiveStr;
};
struct UnionWithBoundStringStruct {
UnionWithBoundString v;
};