1--TEST--
2Testing __unset() with protected visibility
3--FILE--
4<?php
5
6class foo {
7 protected function __unset($a) {
8 print "unset\n";
9 }
10}
11
12?>
13--EXPECTF--
14Warning: The magic method __unset() must have public visibility and cannot be static in %s on line %d
15