Files
swift-mirror/test/Serialization/Inputs/actor_bar.swift
Doug Gregor 02081d754b Make sure we evaluate the a global actor annotation on an extension.
Without doing this, we crash during serialization. Fixes rdar://90170284.
2022-03-25 11:47:02 -07:00

7 lines
104 B
Swift

public actor Bar {}
public class SomewhatOnMainActor { }
@MainActor
extension SomewhatOnMainActor { }