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
The pattern x.* will match calls to constructors (because their name fits "any"="*"), but the sub-pattern x will apply to the first argument of the constructor, which is counter-intuitive.
The pattern
x.*will match calls to constructors (because their name fits "any"="*"), but the sub-patternxwill apply to the first argument of the constructor, which is counter-intuitive.