Skip to content

Instantly share code, notes, and snippets.

@fabb
Forked from anonymous/TheAbyss.h
Last active October 25, 2017 10:32
Show Gist options
  • Save fabb/751731fad1a5d5b7d631fcf5de2555fc to your computer and use it in GitHub Desktop.
Save fabb/751731fad1a5d5b7d631fcf5de2555fc to your computer and use it in GitHub Desktop.
// TheAbyss.h
+ (NSString *)greetingMessageFromTheOtherworld;
// TheAbyss.m
+ (NSString *)greetingMessageFromTheOtherworld {
return nil;
}
// LonesomeWanderer.swift
TheAbyss.greetingMessageFromTheOtherworld().isEmpty
// compiles fine, but crashes at runtime with a lovely message:
// "fatal error: unexpectedly found nil while unwrapping an Optional value"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment