App startup crash when using NavigationView with EmptyView

I'm getting crashes when I'm using `EmptyView` as a root of `NavigationView`. Here's the minimum code I managed to get to reproduce the crash:


struct ContentView: View {
    var body: some View {
        NavigationView {
            EmptyView()
        }
    }
}