From: Martin v. Löwis Date: Fri, 12 Mar 1999 03:41:32 +0000 (+0000) Subject: Problem fixed in g++. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=95a2ecfe7ee999583470d82b126bf15b377bdb2b;p=gcc.git Problem fixed in g++. From-SVN: r25723 --- diff --git a/gcc/testsuite/g++.old-deja/g++.martin/sts_conv.C b/gcc/testsuite/g++.old-deja/g++.martin/sts_conv.C index 9f06c952d44..4a3a436fe79 100644 --- a/gcc/testsuite/g++.old-deja/g++.martin/sts_conv.C +++ b/gcc/testsuite/g++.old-deja/g++.martin/sts_conv.C @@ -14,7 +14,7 @@ private: int main(){ CArray a; - double *pa = a + 1; // gets bogus error - should convert - XFAIL + double *pa = a + 1; // gets bogus error - should convert return 0; }