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