1--TEST--
2mysqli_thread_safe()
3--SKIPIF--
4<?php
5require_once('skipif.inc');
6?>
7--FILE--
8<?php
9    if (!is_bool($tmp = mysqli_thread_safe()))
10        printf("[001] Expecting boolean/any, got %s/%s.\n", gettype($tmp), $tmp);
11
12    print "done!";
13?>
14--EXPECT--
15done!
16