blob: 42b5869a8df1511e2a0b7dbc2bf7a069dedc2704 [file] [log] [blame]
// This file is a part of the multi-file test driven by 'main.swift'.
// NB: No "-verify"--this file should parse successfully on its own.
// RUN: %target-swift-frontend(mock-sdk: %clang-importer-sdk) -typecheck -parse-as-library %s
// REQUIRES: objc_interop
import UIKit
@UIApplicationMain // expected-error{{'UIApplicationMain' attribute cannot be used in a module that contains top-level code}}
class MyDelegate: NSObject, UIApplicationDelegate {
}
func hi() {}