mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-03 10:20:42 +08:00
new
From-SVN: r17853
This commit is contained in:
parent
3ac3d9eaf1
commit
68ea752b16
@ -15,7 +15,7 @@ public:
|
||||
static int class0_member_1 = 99; /* ERROR - */
|
||||
int &class0_member_2 = global_int; /* ERROR - */
|
||||
|
||||
class0 () : class0_member_2 (global_int) { }
|
||||
class0 () : class0_member_2 (global_int) { } /* ERROR - */
|
||||
};
|
||||
|
||||
|
||||
@ -24,7 +24,7 @@ struct struct0 {
|
||||
static int struct0_member_1 = 99; /* ERROR - */
|
||||
int &struct0_member_2 = global_int; /* ERROR - */
|
||||
|
||||
struct0 () : struct0_member_2 (global_int) { }
|
||||
struct0 () : struct0_member_2 (global_int) { } /* ERROR - */
|
||||
};
|
||||
|
||||
// g++ does not allow unions to have more than one member with an initializer
|
||||
@ -40,7 +40,7 @@ union union1 {
|
||||
union union2 {
|
||||
int &union2_member_0 = global_int; /* ERROR - */
|
||||
|
||||
union2 () : union2_member_0 (global_int) { }
|
||||
union2 () : union2_member_0 (global_int) { } /* ERROR - */
|
||||
};
|
||||
|
||||
int main () { return 0; }
|
||||
|
@ -15,7 +15,7 @@ int main()
|
||||
}
|
||||
|
||||
catch (E *&e) {
|
||||
printf ("address of e is 0x%x\n", (long)e);
|
||||
printf ("address of e is 0x%lx\n", (long)e);
|
||||
return !(long(e) != 5 && e->x == 5);
|
||||
}
|
||||
return 2;
|
||||
|
@ -12,7 +12,8 @@ public:
|
||||
|
||||
class foo {
|
||||
private:
|
||||
const unsigned char * const dummy_key = (unsigned char*)"ThisIs a dummy!";
|
||||
static const unsigned char * const dummy_key = (unsigned char*)"ThisIs a dummy!";
|
||||
|
||||
public:
|
||||
void bar ();
|
||||
};
|
||||
|
@ -1,10 +0,0 @@
|
||||
// Bug: g++ crashes on this (admittedly invalid) input.
|
||||
// Special g++ Options:
|
||||
// Build don't link:
|
||||
|
||||
class PhysicalPageId {
|
||||
const int maximum_block_numbers = 2;
|
||||
long block_number[maximum_block_numbers];
|
||||
};
|
||||
|
||||
const PhysicalPageId shadows_physical_page_id_null = { 2, { 0, 0 } }; // ERROR - constructor initializes non-field m_b_n
|
@ -60,8 +60,10 @@ int main()
|
||||
|
||||
struct Crctr
|
||||
{
|
||||
Crctr() : goop(fighter) {}
|
||||
|
||||
char dm[24], campaign[24], name[24], player[24];
|
||||
goopes goop = fighter;// ERROR - .*
|
||||
goopes goop;
|
||||
alignments alignment;
|
||||
int level, maxhit, hitpoints, ac;
|
||||
abitities scores;// ERROR - .*
|
||||
|
@ -5,7 +5,7 @@ class data;
|
||||
class conatiner {
|
||||
public:
|
||||
virtual void* first ();
|
||||
virtual data* contents (void* i);
|
||||
virtual data* contents (void* i); // ERROR - candidates
|
||||
};
|
||||
|
||||
class user {
|
||||
@ -17,4 +17,4 @@ private:
|
||||
|
||||
data* user::data1() const {
|
||||
return (_c.contents (_c.first)); // ERROR -
|
||||
}
|
||||
} // ERROR - control reaches end
|
||||
|
6
gcc/testsuite/g++.old-deja/g++.other/conv1.C
Normal file
6
gcc/testsuite/g++.old-deja/g++.other/conv1.C
Normal file
@ -0,0 +1,6 @@
|
||||
// Build don't link:
|
||||
|
||||
class X {
|
||||
public:
|
||||
const operator int (); // ERROR - invalid declaration.
|
||||
};
|
7
gcc/testsuite/g++.old-deja/g++.other/init3.C
Normal file
7
gcc/testsuite/g++.old-deja/g++.other/init3.C
Normal file
@ -0,0 +1,7 @@
|
||||
// Build don't link:
|
||||
|
||||
struct X
|
||||
{
|
||||
static const bool is_signed = true ;
|
||||
static const int digits = is_signed ? 8 *sizeof(wchar_t)-1 : 0;
|
||||
};
|
12
gcc/testsuite/g++.old-deja/g++.other/init4.C
Normal file
12
gcc/testsuite/g++.old-deja/g++.other/init4.C
Normal file
@ -0,0 +1,12 @@
|
||||
// Build don't link:
|
||||
|
||||
class error {
|
||||
public:
|
||||
error(int) {}
|
||||
};
|
||||
|
||||
class foo {
|
||||
const error x = 1; // ERROR - initialization of non-static data member
|
||||
};
|
||||
|
||||
|
15
gcc/testsuite/g++.old-deja/g++.other/ptrmem1.C
Normal file
15
gcc/testsuite/g++.old-deja/g++.other/ptrmem1.C
Normal file
@ -0,0 +1,15 @@
|
||||
// Build don't link:
|
||||
|
||||
class x
|
||||
{
|
||||
public:
|
||||
virtual int is_constant();
|
||||
};
|
||||
|
||||
void foo()
|
||||
{
|
||||
x* y;
|
||||
if (y->is_constant) // ERROR - assuming &
|
||||
{
|
||||
}
|
||||
}
|
10
gcc/testsuite/g++.old-deja/g++.pt/defarg.C
Normal file
10
gcc/testsuite/g++.old-deja/g++.pt/defarg.C
Normal file
@ -0,0 +1,10 @@
|
||||
template <class T>
|
||||
void f(T t, int i = 10);
|
||||
|
||||
template <class T>
|
||||
void f(T t, int i) {}
|
||||
|
||||
int main()
|
||||
{
|
||||
f(3);
|
||||
}
|
47
gcc/testsuite/g++.old-deja/g++.pt/nested1.C
Normal file
47
gcc/testsuite/g++.old-deja/g++.pt/nested1.C
Normal file
@ -0,0 +1,47 @@
|
||||
// Build don't link:
|
||||
|
||||
template <class T1,class T2>
|
||||
struct X
|
||||
{
|
||||
T1 a;
|
||||
|
||||
struct Y
|
||||
{
|
||||
T2 x;
|
||||
Y (T2 _x) { x=_x; }
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
template <class T1>
|
||||
struct X<T1,int>
|
||||
{
|
||||
T1 a;
|
||||
|
||||
struct Y
|
||||
{
|
||||
int x;
|
||||
Y (int _x) { x=_x; }
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
template <>
|
||||
struct X<int,int>
|
||||
{
|
||||
int a;
|
||||
|
||||
struct Y
|
||||
{
|
||||
int x;
|
||||
Y (int _x) { x=_x; }
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
void f ()
|
||||
{
|
||||
X<char,char> t1;
|
||||
X<char,int> t2;
|
||||
X<int,int> t3;
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user