Search Issue Tracker
Won't Fix
Votes
0
Found in
2018.3.0a1
2018.3.0b2
Issue ID
1084572
Regression
Yes
Creating a certain struct in the script crashes the Editor on Begin MonoManager ReloadAssembly
To reproduce:
1. In a new project, create a script and write the following in the script:
public struct NavigationNode {
public NavigationNode? parent;
}
2. Save the script and go back to Unity
3. Observe that Unity simply closes during compilation
Expected: the Editor doesn't crash
Reproduced in 2018.3.0a1, 2018.3.0b2, 2018.3.0b3, 2019.1.0a2
Did not reproduce in 2018.2.10f1
Regression introduced in 2018.3.0a1
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- [URP] Crash on GameObject::QueryComponentByType when baking a Reflection Probe in an unsaved/untitled Scene
- No Icons are used for the Entry and Exit States in the Inspector when selected in an Animator Controller
- Crash on PlayerMain(int, char const**) when exiting Standalone Player with a Particle System in the Scene
- No Icon is used for the Runtime Animator Controller Type in a Search Window when assigning an Animator Controller in the Animator Component
- Unity Version Control server textfield’s text overlaps with the dropdown triangle button in the Explore repositories window when an organization with a long name is selected
Resolution Note:
This is an interaction between the new Roslyn compiler at 2018.3 and the .NET reference assemblies we compile against. The reference assemblies are missing fields which doesn't allow compiler to infer the infinite type recursion. This is being tracked as a mono issue: https://github.com/mono/mono/issues/7859