回答編集履歴

1

argument passed to call that takes no arguments

2018/07/26 06:16

投稿

fuzzball
fuzzball

スコア16731

test CHANGED
@@ -9,3 +9,19 @@
9
9
  english(10, "Hello World")
10
10
 
11
11
  ```
12
+
13
+
14
+
15
+ # エラーの再現
16
+
17
+
18
+
19
+ ```swift
20
+
21
+ func hoge() {}
22
+
23
+ hoge(0)
24
+
25
+ //=> error: argument passed to call that takes no arguments
26
+
27
+ ```