You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 13, 2020. It is now read-only.
public class Mixin1
{
public int Number{ get{ return 42;} }
}
public class Mixin2
{
public int OtherNumber{ get{ return 24;} }
}
[pMixin(Mixin = typeof(Mixin1))]
[pMixin(Mixin = typeof(Mixin2))]
public class CustomPMixinsAttribute : Attribute
{
}
[CustomPMixins]
public partial class Target
{
}
The text was updated successfully, but these errors were encountered:
This should be allowed:
The text was updated successfully, but these errors were encountered: