blob: 69f0e9ae6191f1dc6c67761dcbe9e635ecaa07e6 [file] [log] [blame]
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
library base.testfidl;
@discoverable
protocol TestInterface {
Add(struct {
a int32;
b int32;
}) -> (struct {
sum int32;
});
};