Test for implicitly typed declarations.
ステータスチェックはすべて成功しました
The build was successful.

このコミットが含まれているのは:
Rafal Kupiec 2019-06-15 23:44:10 +02:00
コミット fffce10ba8
署名者: belliash
GPGキーID: 4E829243E0CFE6B4
2個のファイルの変更32行の追加0行の削除

23
tests/implicitly_typed_declarations.aer ノーマルファイル
ファイルの表示

@ -0,0 +1,23 @@
class Test {
}
class Program {
public void test() {
static auto $r = 3;
$r++;
var_dump($r);
}
public void main() {
auto $a = 'test string';
auto $b = new Test();
auto $c = 6.5;
auto $d = true;
auto $e = NULL;
for(auto $i = 0; $i < 3; $i++) {
$this->test();
}
var_dump($a, $b, $c, $d, $e);
}
}

9
tests/implicitly_typed_declarations.exp ノーマルファイル
ファイルの表示

@ -0,0 +1,9 @@
int(4)
int(5)
int(6)
string(11 'test string')
object(Test) {
}
float(6.5)
bool(TRUE)
void(NULL)