Commit aaa9d731 by Jason Merrill

bogus

From-SVN: r23344
parent b894fc05
// Build don't link:
// GROUPS passed visibility
// visibility file
// From: Robert Carden <carden@thoth.ics.uci.edu>
// Date: Thu, 12 Aug 1993 13:47:11 -0700
// Subject: bug 8/12/93 -- #4
// Message-ID: <9308121347.aa26185@Paris.ics.uci.edu>
//
// 4.cc
//
#include <stream.h>
class A {
int x;
public:
void f(int);
void f(float);
void g(void *);
};
class B : public A {
private:
A::f;
A::g;// ERROR - .* , XFAIL *-*-*
};
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment