diff --git a/src/coreclr/tools/aot/ILCompiler.Compiler/Compiler/DependencyAnalysis/EETypeNode.cs b/src/coreclr/tools/aot/ILCompiler.Compiler/Compiler/DependencyAnalysis/EETypeNode.cs index 2c807330567229..4c066a175eaf91 100644 --- a/src/coreclr/tools/aot/ILCompiler.Compiler/Compiler/DependencyAnalysis/EETypeNode.cs +++ b/src/coreclr/tools/aot/ILCompiler.Compiler/Compiler/DependencyAnalysis/EETypeNode.cs @@ -253,7 +253,7 @@ private bool CanonFormTypeMayExist { get { - if (!_type.HasInstantiation) + if (_type.IsArrayTypeWithoutGenericInterfaces()) return false; if (!_type.Context.SupportsCanon) diff --git a/src/tests/nativeaot/SmokeTests/Reflection/Reflection.cs b/src/tests/nativeaot/SmokeTests/Reflection/Reflection.cs index 9ad7b5e77be18c..dce533e5ed2d8d 100644 --- a/src/tests/nativeaot/SmokeTests/Reflection/Reflection.cs +++ b/src/tests/nativeaot/SmokeTests/Reflection/Reflection.cs @@ -45,6 +45,7 @@ private static int Main() TestTypesInMethodSignatures.Run(); TestAttributeInheritance.Run(); + Test113750Regression.Run(); TestStringConstructor.Run(); TestAssemblyAndModuleAttributes.Run(); TestAttributeExpressions.Run(); @@ -1202,6 +1203,22 @@ public ClassToConstruct(int i) } } + class Test113750Regression + { + class Atom; + + public static void Run() + { + var arr = Array.CreateInstance(GetAtom(), 0); + + [MethodImpl(MethodImplOptions.NoInlining)] + static Type GetAtom() => typeof(Atom); + + if (!(arr is Atom[])) + throw new Exception(); + } + } + class TestStringConstructor { public static void Run()