Is it possible to suppress this warning?
class C {}
struct S {
var i = 0
var c = C()
}
var a = S()
func foo(_ v: UnsafeRawPointer) {}
foo(&a)
// 🔶 Warning: Forming 'UnsafeRawPointer' to a variable of type 'S';
// this is likely incorrect because 'S' may contain an object reference.