blob: 94c65abf8d124e8c13855b9e3ca5bc2d631eb5c9 [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 banjo.examples.example4;
struct Point {
uint64 x;
};
enum Enum {
x = 23;
};
interface Interface {
func(bool x) -> ();
};