Files
swift-mirror/test/attr/ApplicationMain/attr_UIApplicationMain.swift

13 lines
645 B
Swift

// RUN: %target-swift-frontend(mock-sdk: %clang-importer-sdk) -typecheck -parse-as-library -verify %s
// RUN: %target-swift-frontend(mock-sdk: %clang-importer-sdk) -typecheck -parse-as-library -enable-upcoming-feature DeprecateApplicationMain -verify -verify-additional-prefix deprecated- %s
// REQUIRES: objc_interop
// REQUIRES: swift_feature_DeprecateApplicationMain
import UIKit
@UIApplicationMain // expected-deprecated-warning {{'UIApplicationMain' is deprecated; this is an error in the Swift 6 language mode}}
// expected-deprecated-note@-1 {{use '@main' instead}} {{1-19=@main}}
class MyDelegate: NSObject, UIApplicationDelegate {
}