1// Copyright 2018 The Fuchsia Authors. All rights reserved. 2// Use of this source code is governed by a BSD-style license that can be 3// found in the LICENSE file. 4 5library fidl.examples.emptystruct; 6 7struct Empty { 8}; 9 10[Layout = "Simple"] 11interface EmptyInterface { 12 Send(Empty e); 13 -> Receive (Empty e); 14 SendAndReceive(Empty e) -> (Empty e); 15}; 16