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
Sema: Always allow method overrides to be as available as the context.
When a method override is as available as the class it's a member of, then it
can't be any more available. It doesn't make sense to diagnose such a method as
less available than the method it overrides. This regressed recently for
methods belonging to classes that are nested inside extensions. The
availability of the derived class may be defined by its context, but the
compiler was only checking the availability attributes directly on the class.
Resolves rdar://143600638.
publicoverridefunc beforeInliningTargetMethod(){} // expected-error {{overriding 'beforeInliningTargetMethod' must be as available as declaration it overrides}}
1794
+
1795
+
@available(macOS 10.15,*)
1796
+
publicoverridefunc atInliningTargetMethod(){} // expected-error {{overriding 'atInliningTargetMethod' must be as available as declaration it overrides}}
1797
+
1798
+
@available(macOS 10.15,*)
1799
+
publicoverridefunc betweenTargetsMethod(){} // expected-error {{overriding 'betweenTargetsMethod' must be as available as declaration it overrides}}
publicoverridefunc beforeInliningTargetMethod(){} // expected-error {{overriding 'beforeInliningTargetMethod' must be as available as declaration it overrides}}
1811
+
1812
+
@available(macOS 12,*)
1813
+
publicoverridefunc atInliningTargetMethod(){} // expected-error {{overriding 'atInliningTargetMethod' must be as available as declaration it overrides}}
1814
+
1815
+
@available(macOS 12,*)
1816
+
publicoverridefunc betweenTargetsMethod(){} // expected-error {{overriding 'betweenTargetsMethod' must be as available as declaration it overrides}}
1817
+
1818
+
@available(macOS 12,*)
1819
+
publicoverridefunc atDeploymentTargetMethod(){} // expected-error {{overriding 'atDeploymentTargetMethod' must be as available as declaration it overrides}}
1820
+
1821
+
@available(macOS 12,*)
1822
+
publicoverridefunc afterDeploymentTargetMethod(){} // expected-error {{overriding 'afterDeploymentTargetMethod' must be as available as declaration it overrides}}
publicoverridefunc beforeInliningTargetMethod(){} // expected-error {{overriding 'beforeInliningTargetMethod' must be as available as declaration it overrides}}
1846
+
1847
+
@available(macOS 11,*)
1848
+
publicoverridefunc atInliningTargetMethod(){} // expected-error {{overriding 'atInliningTargetMethod' must be as available as declaration it overrides}}
1849
+
1850
+
@available(macOS 11,*)
1851
+
publicoverridefunc betweenTargetsMethod(){} // expected-error {{overriding 'betweenTargetsMethod' must be as available as declaration it overrides}}
1852
+
1853
+
@available(macOS 11,*)
1854
+
publicoverridefunc atDeploymentTargetMethod(){} // expected-error {{overriding 'atDeploymentTargetMethod' must be as available as declaration it overrides}}
0 commit comments