New test case.

From-SVN: r23246
This commit is contained in:
Martin v. Löwis 1998-10-23 08:53:32 +00:00
parent abef87891c
commit 1d5f42ab2b
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
// excess errors test - XFAIL
struct S{
operator bool()
{
return true;
}
};
int main()
{
S a;
if (S &b = a);
}