blob: 5a4f5bada08b20c0987cf264783b5bb53b107bee [file] [log] [blame]
// RUN: %target-swift-frontend -typecheck -verify -enable-objc-interop %s
// RUN: %target-swift-frontend -typecheck -verify -enable-objc-interop %s -parse-as-library
class Oof {
@objc dynamic func impliesObjC() { }
// expected-error@-1 {{'dynamic' attribute used without importing module 'Foundation'}}
// expected-error@-2 {{@objc attribute used without importing module 'Foundation'}}
}