blob: 4ba8bbb22f3c5cb6be421f3ede7fd9568ff1387d [file] [log] [blame]
// Copyright 2021 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Tests a function with an invalid platform.
namespace function_platforms {
interface Functions {
static void function_all();
[platforms=("linux", "windows")]
static void function_windows_linux();
};
};