mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
11 lines
349 B
Swift
11 lines
349 B
Swift
// RUN: %target-swift-frontend(mock-sdk: %clang-importer-sdk) -swift-version 6 -typecheck -parse-as-library -verify %s
|
|
|
|
// REQUIRES: objc_interop
|
|
|
|
import UIKit
|
|
|
|
@UIApplicationMain // expected-error {{'UIApplicationMain' is deprecated}}
|
|
// expected-note@-1 {{use '@main' instead}} {{1-19=@main}}
|
|
class MyDelegate: NSObject, UIApplicationDelegate {
|
|
}
|