Test for implicitly typed declarations.
The build was successful. Details

This commit is contained in:
Rafal Kupiec 2019-06-15 23:44:10 +02:00
parent ace4d56d7f
commit fffce10ba8
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4
2 changed files with 32 additions and 0 deletions

View File

@ -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);
}
}

View File

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