blob: 475534fdda4776202d5ea74f460cd322918cd39e [file] [log] [blame]
// Copyright 2021 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 test.driveroneway;
type Payload = struct {
value uint32;
};
@transport("Driver")
protocol OneWay {
Send(struct {
payload Payload;
});
};