Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

System.TypeLoadException from static field #100950

Open
hamarb123 opened this issue Apr 12, 2024 · 7 comments
Open

System.TypeLoadException from static field #100950

hamarb123 opened this issue Apr 12, 2024 · 7 comments
Assignees
Milestone

Comments

@hamarb123
Copy link
Contributor

Description

The runtime seems to throw a System.TypeLoadException on a struct S1 with a static field of type Nullable<S1>.

Reproduction Steps

Run the following code:

S1.X();

struct S1
{
    private static S1? _s1;
    public static void X() { }
}

https://sharplab.io/#v2:C4LgTgrgdgNAJiA1AHwMoEYB0ANAFASgG4BYAKDIGdhIBjYAAgzIG8z736AHMASwDcAhsACm9AALoAbI3QB+egH0K6EqQ7iAzOKniALPTz56zegF8y50kA==

Expected behavior

Does not crash

Actual behavior

Crashes:

System.TypeLoadException: Could not load type 'S1' from assembly '_, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null'.
   at Program.<Main>$(String[] args)
   at System.RuntimeMethodHandle.InvokeMethod(Object target, Void** arguments, Signature sig, Boolean isConstructor)
   at System.Reflection.MethodBaseInvoker.InvokeDirectByRefWithFewArgs(Object obj, Span`1 copyOfArgs, BindingFlags invokeAttr)

Regression?

No response

Known Workarounds

No response

Configuration

Windows 10.0.19045.4291 x64
.NET 8.0.4
And Sharplab.io

Other information

No response

@dotnet-issue-labeler dotnet-issue-labeler bot added the needs-area-label An area label is needed to ensure this gets routed to the appropriate area owners label Apr 12, 2024
@dotnet-policy-service dotnet-policy-service bot added the untriaged New issue has not been triaged by the area owner label Apr 12, 2024
@Tornhoof
Copy link
Contributor

See #79636

@hamarb123
Copy link
Contributor Author

Found this following that trail: #6924 (comment) - I see no other issue for it

@hamarb123
Copy link
Contributor Author

Duplicate of #88030

@dotnet-policy-service dotnet-policy-service bot removed the untriaged New issue has not been triaged by the area owner label Apr 12, 2024
@hamarb123
Copy link
Contributor Author

hamarb123 commented Apr 12, 2024

Actually, that issue, while very similar, is not exactly the same as this one - in the other one the generic parameter is not actually used, whereas for Nullable<T> it would be. I'll reopen so someone on runtime team can decide if they should be merged or separate (since, to my way of thinking at least, depending on how the other one gets fixed, it might not actually fix my one).

@hamarb123 hamarb123 reopened this Apr 12, 2024
@dotnet-policy-service dotnet-policy-service bot added the untriaged New issue has not been triaged by the area owner label Apr 12, 2024
@vcsjones vcsjones added area-TypeSystem-coreclr and removed needs-area-label An area label is needed to ensure this gets routed to the appropriate area owners labels Apr 12, 2024
@steveisok
Copy link
Member

/cc @fanyang-mono

@steveisok
Copy link
Member

Closing as it's a duplicate of #104511

@github-actions github-actions bot locked and limited conversation to collaborators Aug 18, 2024
@kg
Copy link
Member

kg commented Feb 4, 2025

This looks like it's actually different from 104511 somehow. Not sure what's going on yet.

EDIT: This one fails an assertion starting at

if (g_pNullableClass != NULL)

because the two sizes don't match at
_ASSERTE(pMT->GetNullableNumInstanceFieldBytes() == pMT->GetNumInstanceFieldBytes());

and then it throws a special type loading exception despite the use of tkTypeDefToAvoidIfPossible to avoid S1.
The type load failure initially appears to be because the layout comparison here failed and iRecursiveGenericFieldHandlingPass == 1:
bool failedLayoutCompare = objectSizeCanonInstantiation != objectSizeByteInstantion;

@kg kg reopened this Feb 4, 2025
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

7 participants