-
Notifications
You must be signed in to change notification settings - Fork 370
Closed
Labels
bug 🐛An unexpected issue that highlights incorrect behaviorAn unexpected issue that highlights incorrect behaviormvvm-toolkit 🧰Issues/PRs for the MVVM ToolkitIssues/PRs for the MVVM Toolkit
Description
Describe the bug
Using [RelayCommand] with partial methods incorrectly marks them as being overloads, and emits an error.
Regression
No.
Steps to reproduce
[RelayCommand]
private partial void Foo();
private partial void Foo()
{
}
private partial void Bar();
[RelayCommand]
private partial void Bar()
{
}Expected behavior
The code should compile just fine.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bug 🐛An unexpected issue that highlights incorrect behaviorAn unexpected issue that highlights incorrect behaviormvvm-toolkit 🧰Issues/PRs for the MVVM ToolkitIssues/PRs for the MVVM Toolkit