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
- [Android] The Player screen turns black when playing a video under certain conditions
- Search window icons at the bottom are cut off when Search window is resized vertically
- "Try something else?" text label is cut off when searching for a long text in the Search window
- Rendering Debugger window sections do not have a minimum width set when resizing with the slider in the middle of the window
- Last segment of a Sprite Shape Spline is affected by other segments' Sprite Variant change when no edge Sprite 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