blob: 05689fd5c6c510dafc9f8c9d8854085249be2b43 [file]
// Copyright 2019 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.
deprecated_syntax;
library llcpptest.transitional.test;
/// Protocol with a non-transitional method and transitional method.
/// Only the non-transitional method should need to be implemented.
protocol TransitionMethods {
ImplementedMethod() -> (string value);
[Transitional = "This method should not need to be implemented to build"]
UnimplementedMethod() -> (string value);
};