Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumSwiftphantom typesSingle-choice MCQ

Phantom types carry no stored data for the marker. What is the size of `Temp<Celsius>` here?

enum Celsius {} struct Temp<Unit> { let value: Double } print(MemoryLayout<Temp<Celsius>>.size)