Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
af076391
Commit
af076391
authored
Jul 05, 1999
by
Alexandre Oliva
Committed by
Alexandre Oliva
Jul 05, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* typename1.C, typename2.C: New tests.
From-SVN: r27945
parent
62b10bbc
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
49 additions
and
0 deletions
+49
-0
gcc/testsuite/g++.old-deja/g++.oliva/ChangeLog
+2
-0
gcc/testsuite/g++.old-deja/g++.oliva/typename1.C
+19
-0
gcc/testsuite/g++.old-deja/g++.oliva/typename2.C
+28
-0
No files found.
gcc/testsuite/g++.old-deja/g++.oliva/ChangeLog
View file @
af076391
1999-07-05 Alexandre Oliva <oliva@dcc.unicamp.br>
* typename1.C, typename2.C: New tests.
* template3.C: Fixed.
* ns3.C: New test.
...
...
gcc/testsuite/g++.old-deja/g++.oliva/typename1.C
0 → 100644
View file @
af076391
// Build don't link:
// Copyright (C) 1999 Free Software Foundation
// by Alexandre Oliva <oliva@dcc.unicamp.br>
// based on bug report by Nick Rasmussen <nick@jive.org>
// crash test - XFAIL *-*-*
template
<
class
T
>
struct
foo
;
template
<
class
T
>
struct
bar
{
typedef
int
foo
;
};
template
<
class
T
>
struct
baz
{
typedef
bar
<
T
>::
foo
foo
;
// ERROR - missing typename
void
m
(
foo
);
};
gcc/testsuite/g++.old-deja/g++.oliva/typename2.C
0 → 100644
View file @
af076391
// Build don't link:
// Special g++ Options:
// Copyright (C) 1999 Free Software Foundation
// by Alexandre Oliva <oliva@dcc.unicamp.br>
// based on bug report by Nick Rasmussen <nick@jive.org>
// This is slightly different from typename1.C. This one tests
// whether the implicit typename extension works. gcc 2.95 reports:
// warning: lookup of `foo' finds `struct foo'
// warning: instead of `baz<T>::foo' from dependent base class
// warning: (use `typename baz::foo' if that's what you meant)
// But baz<T>::foo is not a base class, and `foo' should have been
// found in baz's scope.
struct
foo
;
template
<
class
T
>
struct
bar
{
typedef
int
foo
;
};
template
<
class
T
>
struct
baz
{
typedef
bar
<
T
>::
foo
foo
;
// ERROR - implicit typename - XFAIL *-*-*
void
m
(
foo
);
// gets bogus error - dependent base class - XFAIL *-*-*
};
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment