Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'test/Mono.Linker.Tests.Cases/DataFlow/CompilerGeneratedCodeAccessedViaReflection.cs')
-rw-r--r--test/Mono.Linker.Tests.Cases/DataFlow/CompilerGeneratedCodeAccessedViaReflection.cs10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/Mono.Linker.Tests.Cases/DataFlow/CompilerGeneratedCodeAccessedViaReflection.cs b/test/Mono.Linker.Tests.Cases/DataFlow/CompilerGeneratedCodeAccessedViaReflection.cs
index a05e25439..347358f90 100644
--- a/test/Mono.Linker.Tests.Cases/DataFlow/CompilerGeneratedCodeAccessedViaReflection.cs
+++ b/test/Mono.Linker.Tests.Cases/DataFlow/CompilerGeneratedCodeAccessedViaReflection.cs
@@ -534,8 +534,6 @@ namespace Mono.Linker.Tests.Cases.DataFlow
public static void Test ()
{
var a =
- [ExpectedWarning ("IL2118", nameof (LambdaWhichMarksItself), "<Test>",
- ProducedBy = ProducedBy.Trimmer)]
() => {
RequiresAllOnT<LambdaWhichMarksItself> ();
};
@@ -548,8 +546,6 @@ namespace Mono.Linker.Tests.Cases.DataFlow
{
public static void Test ()
{
- [ExpectedWarning ("IL2118", nameof (LocalFunctionWhichMarksItself), "<Test>",
- ProducedBy = ProducedBy.Trimmer)]
void LocalFunction ()
{
RequiresAllOnT<LocalFunctionWhichMarksItself> ();
@@ -561,7 +557,6 @@ namespace Mono.Linker.Tests.Cases.DataFlow
class IteratorWhichMarksItself
{
- [ExpectedWarning ("IL2118", ProducedBy = ProducedBy.Trimmer, CompilerGeneratedCode = true)]
public static IEnumerable<int> Test ()
{
yield return 0;
@@ -574,7 +569,6 @@ namespace Mono.Linker.Tests.Cases.DataFlow
class AsyncWhichMarksItself
{
- [ExpectedWarning ("IL2118", ProducedBy = ProducedBy.Trimmer, CompilerGeneratedCode = true)]
public static async void Test ()
{
await MethodAsync ();
@@ -599,8 +593,6 @@ namespace Mono.Linker.Tests.Cases.DataFlow
class LocalFunctionWhichMarksItselfOnlyAccessedViaReflection
{
- [ExpectedWarning ("IL2118", nameof (LocalFunctionWhichMarksItselfOnlyAccessedViaReflection), "<" + nameof (ClassWithLocalFunction.MethodWithLocalFunction) + ">", "LocalFunction",
- ProducedBy = ProducedBy.Trimmer)]
public static void Test ()
{
RequiresNonPublicMethodsOnT<ClassWithLocalFunction> ();
@@ -610,8 +602,6 @@ namespace Mono.Linker.Tests.Cases.DataFlow
{
public static void MethodWithLocalFunction ()
{
- [ExpectedWarning ("IL2118", nameof (LocalFunctionWhichMarksItselfOnlyAccessedViaReflection), "<" + nameof (MethodWithLocalFunction) + ">", nameof (LocalFunction),
- ProducedBy = ProducedBy.Trimmer)]
static void LocalFunction ()
{
RequiresNonPublicMethodsOnT<ClassWithLocalFunction> ();