summaryrefslogtreecommitdiff
path: root/Zend/tests/type_declarations/typed_properties_050.phpt
blob: 3fa826083e131b2a754f604a8b05397decff0679 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
--TEST--
Weak casts must not overwrite source variables
--FILE--
<?php

$b = 1;
$a = "$b";
class A { public int $a; }
$o = new A;
$o->a = $b;
var_dump($o, $a);

?>
--EXPECT--
object(A)#1 (1) {
  ["a"]=>
  int(1)
}
string(1) "1"