This website works better with JavaScript
ホーム
エクスプローラ
ヘルプ
サインイン
taddeus
/
civicaml
ウォッチ
1
スター
0
フォーク
0
ファイル
課題
0
プルリクエスト
0
Wiki
ソースを参照
Added test case for invalid array constant initialisation
Taddeus Kroes
12 年 前
親
2c7c770755
コミット
9d33a6e4a5
1 ファイル変更
、
4 行追加
、
0 行削除
分割表示
差分情報を表示
4
0
test/arrays/check_error/invalid_init.cvc
+ 4
- 0
test/arrays/check_error/invalid_init.cvc
ファイルの表示
@@ -0,0 +1,4 @@
+void foo() {
+ int[3] a = [[1, 2], 3];
+ int[3] b = [[1, 2], [[3]]];
+}