Files
swift-mirror/test/decl/class/actor/noconcurrency.swift
Doug Gregor a2cdef73a6 [SE-0306] Enable actors by default.
With the acceptance of SE-0306, enable actors by default and add a
ChangeLog entry.

Tracked by rdar://77223763.
2021-04-27 12:25:41 -07:00

9 lines
181 B
Swift

// RUN: %target-typecheck-verify-swift
actor C {
nonisolated func f() { } // expected-error{{'nonisolated' modifier is only valid when experimental concurrency is enabled}}
}