-
Notifications
You must be signed in to change notification settings - Fork 519
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
[CarPlay] Propagate constructors to derived classes. Fixes #15169. #15179
Conversation
In Objective-C constructors are automatically visible in derived classes as well, but we need to replicate such constructors explicitly in derived classes. Fixes dotnet#15169.
💻 [PR Build] Tests on macOS Mac Catalina (10.15) passed 💻✅ All tests on macOS Mac Catalina (10.15) passed. Pipeline on Agent |
📋 [PR Build] API Diff 📋API diff (for current PR)ℹ️ API Diff (from PR only) (please review changes) .NETXamarin vs .NETAPI diff (vs stable)✅ API Diff from stable .NETXamarin vs .NETGenerator diffℹ️ Generator Diff (please review changes) Pipeline on Agent XAMBOT-1107.Monterey |
❌ [CI Build] Tests failed on VSTS: simulator tests iOS ❌Tests failed on VSTS: simulator tests iOS. Test results2 tests failed, 146 tests passed.Failed tests
Pipeline on Agent XAMBOT-1109.Monterey' |
Test failures are unrelated (https://github.com/xamarin/maccore/issues/2558). |
In Objective-C constructors are automatically visible in derived classes as
well, but we need to replicate such constructors explicitly in derived
classes.
Fixes #15169.