This commit is contained in:
parent
ace4d56d7f
commit
fffce10ba8
23
tests/implicitly_typed_declarations.aer
Normal file
23
tests/implicitly_typed_declarations.aer
Normal 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);
|
||||
}
|
||||
}
|
9
tests/implicitly_typed_declarations.exp
Normal file
9
tests/implicitly_typed_declarations.exp
Normal file
@ -0,0 +1,9 @@
|
||||
int(4)
|
||||
int(5)
|
||||
int(6)
|
||||
string(11 'test string')
|
||||
object(Test) {
|
||||
}
|
||||
float(6.5)
|
||||
bool(TRUE)
|
||||
void(NULL)
|
Loading…
Reference in New Issue
Block a user