blob: 316a3d7001251e8e3ebfb8a01e26f2364059c17e [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 fidl.rust.test.compilation;
xunion TestXUnion {
};
protocol TestInterface {
TestMethod(TestXUnion test_x_union) -> (TestXUnion test_x_union);
};
struct HasBigArray {
array<uint8>:256 big_arr;
};
union HasStructWithBigArray {
HasBigArray variant;
uint8 variant2;
};
struct Result {
string ensure_that_type_named_result_compiles;
};