summaryrefslogtreecommitdiff
path: root/tests/src/JIT/opt/virtualstubdispatch/manyintf/itest5.cs
blob: fb1f696ef6796e1dc4046e5b09771822509a7730 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

namespace VirtFunc
{
    public interface ITest5
    {
        int f5a();
        int f5b(int a);
        decimal f5c();
        string f5d();
    }
}