mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
7 lines
175 B
Swift
7 lines
175 B
Swift
// RUN: %target-swift-frontend %s -emit-ir -enable-library-evolution -enable-experimental-concurrency
|
|
// REQUIRES: concurrency
|
|
|
|
public class X {
|
|
public func f() async { }
|
|
}
|