Search Issue Tracker
Won't Fix
Unknown (hidden) 2020.3.X, 2021.3.X, 2022.1.X, 2022.2.X, 2023.1.X
Votes
0
Found in
2020.3.40f1
2021.3.11f1
2022.1.19f1
2022.2.0b10
2023.1.0a13
Issue ID
UUM-17066
Regression
No
IL2CPP Build fails when UniTask variable is declared in the struct
Reproduction steps:
- Open the attached project (“IL2CPPUniTaskBug.zip“)
- Select Scene Assets/Scenes/SampleScene
- Build Project File>Build And Run
Expected results: Build completes
Actual results: Build fails
Reproducible with: 2020.3.40f1, 2021.3.11f1, 2022.1.19f1, 2022.2.0b10, 2023.1.0a13
Reproduced on: Windows 11
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
- Mono Windows Builds don't produce full log callstacks when generating logs
- AssetBundles fail to load when running in Built Players for Mobile Devices
- UI elements with text gets bigger and grey when Player window is moved to another screen with different resolution
- System name accepts multiline text but crops it on confirmation, duplicates input, and shrinks the field when empty
- UI element scale and position are wrong in project build when DRS is changed with HDR and Software Dynamic Resolution enabled
Resolution Note:
This is a limitation of il2cpp (.Net Framework and CoreCLR). At code generation time and at runtime il2cpp processes instance and static fields at the same time. Your case creates a circular dependency between `Result` and the inflated `UniTask<Result>`.
We do not plan to fix this in il2cpp as CoreCLR also does not handle this case and we are in the process of adding CoreCLR support to the Unity Player.
If Microsoft decides to fix this issue we will re-evaluate the bug for il2cpp.
https://github.com/dotnet/runtime/issues/5479