Skip to content

Instantly share code, notes, and snippets.

@aainaj
Last active June 18, 2018 05:51
Show Gist options
  • Save aainaj/486995ecdc2609e1402b500496c93f69 to your computer and use it in GitHub Desktop.
Save aainaj/486995ecdc2609e1402b500496c93f69 to your computer and use it in GitHub Desktop.
AsserstionFailure
/* syntax:
public func assertionFailure(
_ message: @autoclosure () -> String = default,
file: StaticString = #file,
line: UInt = #line)
*/
guard age >= 3 else {
return assertionFailure("Age can't be less than 3")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment