blob: 36da1537ee3222fc78bf1d06d39f0f285d568fc9 [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.examples.bindingstest;
struct EmptyStruct {
};
struct TestEmptyStructSandwich {
string before;
EmptyStruct es;
string after;
};