blob: 0f054a0b54d297f9af1de5dabd8a7ace44191602 [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;
interface AddMethod {
1: ExistingMethod();
2: NewMethod();
};
interface RemoveMethod {
1: ExistingMethod();
};
interface AddEvent {
1: ExistingMethod();
2: -> NewEvent();
};
interface RemoveEvent {
1: ExistingMethod();
};