swiftlang/swift
在 GitHub 查看`isolated` keyword incorrectly permitted in inheritance clause
Open
#83,538 创建于 2025年8月5日
accepts invalidactor isolationcompilerconcurrencygood first issueinheritance clausestype checker
描述
The following compiles but shouldn't since isolated is no longer the syntax for SE-0470:
protocol P {}
struct S: isolated P {}