Files
swift-mirror/test/Macros/Inputs/top_level_freestanding_other.swift

20 lines
560 B
Swift

#if IMPORT_MACRO_LIBRARY
import freestanding_macro_library
#endif
#anonymousTypes { "hello2" }
var globalVar = #stringify(1 + 1)
var globalVar2 = { #stringify(1 + 1) }()
@available(*, deprecated)
func deprecated() -> Int { 0 }
var globalVar3 = #stringify({ deprecated() })
// expected-note@-1 {{in expansion of macro 'stringify' here}}
// expected-warning@-2{{'deprecated()' is deprecated}}
var globalVar4 = #stringify({ deprecated() })
// expected-note@-1 {{in expansion of macro 'stringify' here}}
// expected-warning@-2{{'deprecated()' is deprecated}}