various documentation and minor refactor
[hiphop-php.git] / hphp / test / zend / good / ext / standard / tests / file / bug55124.php
blob9ea4ded36e633766c0c63104c5495210786029a5
1 <?hh
2 <<__EntryPoint>> function main(): void {
3 chdir(sys_get_temp_dir());
4 mkdir('a/./b', 0755, true);
5 if (is_dir('a/b')) {
6 rmdir('a/b');
8 if (is_dir('./a')) {
9 rmdir('a');
11 echo "OK";