mirror of
https://github.com/apple/swift.git
synced 2026-06-20 15:42:51 +02:00
7ac68cecb1
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 *
|
|
}
|