blob: f81955ee49e3b8a1f37207d25471723a716786dc [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 fidl.test.after;
protocol AddMethod {
ExistingMethod();
NewMethod();
};
protocol RemoveMethod {
ExistingMethod();
};
protocol AddEvent {
ExistingMethod();
-> NewEvent();
};
protocol RemoveEvent {
ExistingMethod();
};