In test1(), può restituire Void restituito da test() correttamente. Ma in test2(), l'errore si verifica. Perché?Perché non posso restituire Void direttamente in una funzione
//: Playground - noun: a place where people can play
import UIKit
import AVFoundation
func test()->Void{
print("Hello")
}
func test1(){//print Hello
return test()
}
func test2(){// throw error
return Void
}