Swift - Functions
Examine the Swift code below and identify the error:
func container() {
innerFunc()
func innerFunc() {
print("Hello")
}
}
container()