mirror of
https://github.com/apple/swift.git
synced 2026-02-27 18:26:24 +01:00
Teach Sema to diagnose the access level, exportability, and availability of availability domains that are referenced by `@available` attributes and `if #available` statements. Resolves rdar://159147207.
20 lines
193 B
Plaintext
20 lines
193 B
Plaintext
module Oceans {
|
|
header "Oceans.h"
|
|
export *
|
|
}
|
|
|
|
module Rivers {
|
|
header "Rivers.h"
|
|
export *
|
|
}
|
|
|
|
module Seas {
|
|
header "Seas.h"
|
|
export *
|
|
}
|
|
|
|
module Lakes {
|
|
header "Lakes.h"
|
|
export *
|
|
}
|