Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ class UnmanagedCallersOnlyAssociatedSourceType

public static unsafe int Run()
{
// ActiveIssue: https://github.com/dotnet/runtime/issues/129366
if (OperatingSystem.IsAndroid())
return;
Comment thread
MichalStrehovsky marked this conversation as resolved.
Outdated

GC.KeepAlive(new UsedSource());
typeof(UnmanagedCallersOnlyAssociatedSourceType).GetMethod(nameof(CreateDynamicSource))!.MakeGenericMethod([GetDynamicAtom()]).Invoke(null, []);
typeof(UnmanagedCallersOnlyAssociatedSourceType).GetMethod(nameof(CreateDynamicSourceArray))!.MakeGenericMethod([GetDynamicAtom()]).Invoke(null, []);
Expand Down
Loading