1--TEST--
2DOMAttr __construct() with no arguments.
3--CREDITS--
4Josh Sweeney <jsweeney@alt-invest.net>
5# TestFest Atlanta 2009-05-14
6--SKIPIF--
7<?php require_once('skipif.inc'); ?>
8--FILE--
9<?php
10try {
11    $attr = new DOMAttr();
12} catch (TypeError $e) {
13    echo $e->getMessage(), "\n";
14}
15?>
16--EXPECT--
17DOMAttr::__construct() expects at least 1 parameter, 0 given
18