blob: 4857c5234df67a0289a96ad322ae9028a578433a [file] [log] [blame]
// Copyright 2018 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 fidl.examples.xunion;
table t {
1: string s;
};
xunion xu {
int32 i;
float32 f;
string s;
[Selector = "v2"] vector<int64> v;
};