blob: 1b87b5435ebd1a3ad474bd3237a747ddffd360f6 [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;
array<int32>:5 a;
handle h;
handle<channel> c;
handle<event> e;
};