1--TEST--
2ldap_first_attribute() - Testing ldap_first_attribute() that should fail
3--CREDITS--
4Patrick Allaert <patrickallaert@php.net>
5# Belgian PHP Testfest 2009
6--SKIPIF--
7<?php require_once('skipif.inc'); ?>
8--FILE--
9<?php
10require "connect.inc";
11
12$link = ldap_connect($host, $port);
13try {
14    var_dump(ldap_first_attribute($link, $link));
15} catch (TypeError $e) {
16    echo $e->getMessage(), "\n";
17}
18?>
19--EXPECT--
20ldap_first_attribute(): supplied resource is not a valid ldap result entry resource
21