Hi folks, can you please advise me, there is an example like this:
public class Movie {
var isFavorite = false
}
let movie = Movie()
var sample: @Sendable () -> Void = {
movie.isFavorite.toggle()
}
print(movie.isFavorite)
Huh, thanks so much, I realized why there was no warning. I tried to check in pod file and main project. The main project shows the warning, the pod file does not.