xref: /php-src/ext/opcache/tests/jit/match_003.phpt (revision c16ad918)
1--TEST--
2JIT Match: 003 impossible input
3--INI--
4opcache.enable=1
5opcache.enable_cli=1
6opcache.file_update_protection=0
7--FILE--
8<?php
9function foo(C $i) {
10    match($i) {
11    	1,2=>0
12    };
13};
14?>
15DONE
16--EXPECT--
17DONE
18