-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
Copy pathStaticInterfaceMethodDataflow.cs
94 lines (83 loc) · 1.88 KB
/
StaticInterfaceMethodDataflow.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
// Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
using System.Diagnostics.CodeAnalysis;
using System.Text;
using System.Threading.Tasks;
using Mono.Linker.Tests.Cases.Expectations.Assertions;
namespace Mono.Linker.Tests.Cases.DataFlow
{
[ExpectedNoWarnings]
public class StaticInterfaceMethodDataflow
{
[Kept]
public static void Main ()
{
DamOnGenericKeepsMethod.Test ();
DamOnMethodParameter.Test ();
}
[Kept]
static class DamOnGenericKeepsMethod
{
[Kept]
interface IFoo
{
[Kept]
public static virtual void VirtualMethod () { }
}
[Kept]
[KeptInterface (typeof (IFoo))]
class ImplIFoo : IFoo
{
[Kept]
public static void VirtualMethod () { }
}
[Kept]
static void MethodWithDamOnType<
[KeptAttributeAttribute (typeof (DynamicallyAccessedMembersAttribute))]
[DynamicallyAccessedMembers (DynamicallyAccessedMemberTypes.PublicMethods)]
T> ()
{
}
[Kept]
public static void Test ()
{
MethodWithDamOnType<IFoo> ();
var _ = typeof (ImplIFoo);
}
}
[Kept]
static class DamOnMethodParameter
{
[Kept]
interface IFoo
{
[Kept]
static virtual void VirtualMethod () { }
[Kept]
static abstract void AbstractMethod ();
}
[Kept]
[KeptInterface (typeof (IFoo))]
class ImplIFoo : IFoo
{
[Kept]
public static void VirtualMethod () { }
[Kept]
public static void AbstractMethod () { }
}
[Kept]
static void DamOnParam (
[KeptAttributeAttribute(typeof(DynamicallyAccessedMembersAttribute))]
[DynamicallyAccessedMembers (DynamicallyAccessedMemberTypes.PublicMethods)]
Type type)
{ }
[Kept]
public static void Test ()
{
DamOnParam (typeof (IFoo));
var _ = typeof (ImplIFoo);
}
}
}
}