We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1552bab commit 1036b14Copy full SHA for 1036b14
Tests/MacroTestingTests/MacroExamples/URLMacro.swift
@@ -29,7 +29,7 @@ public enum URLMacro: ExpressionMacro {
29
throw CustomError.message("#URL requires a static string literal")
30
}
31
32
- guard let _ = URL(string: literalSegment.content.text) else {
+ guard URL(string: literalSegment.content.text) != nil else {
33
throw CustomError.message("malformed url: \(argument)")
34
35
0 commit comments