blob: 5bb7552cb882f901da81f996be84c8655cc79140 [file] [log] [blame] [edit]
// 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.
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() -> (struct {
value string;
});
@transitional("This method should not need to be implemented to build")
UnimplementedMethod() -> (struct {
value string;
});
};