1--TEST--
2Basic UConverter::convert() usage
3--INI--
4intl.error_level = E_WARNING
5--SKIPIF--
6<?php if( !extension_loaded( 'intl' ) ) print 'skip'; ?>
7--FILE--
8<?php
9$c = new UConverter('utf-8', "\x80");
10var_dump($c);
11--EXPECTF--
12Warning: UConverter::__construct(): ucnv_open() returned error 4: U_FILE_ACCESS_ERROR in %s on line %d
13object(UConverter)#%d (0) {
14}
15