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
69112571
Commit
69112571
authored
Jun 23, 2000
by
Jason Merrill
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
new
From-SVN: r34658
parent
051664b0
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
4 deletions
+26
-4
gcc/testsuite/g++.old-deja/g++.pt/memtemp89.C
+3
-4
gcc/testsuite/g++.old-deja/g++.pt/ttp60.C
+14
-0
gcc/testsuite/g++.old-deja/g++.pt/ttp61.C
+9
-0
No files found.
gcc/testsuite/g++.old-deja/g++.pt/memtemp89.C
View file @
69112571
// Build don't link:
// by Paul Burchard <burchard@pobox.com>, Level Set Systems, Inc.
// Copyright (C) 1999 Free Software Foundation
// Copyright (C) 1999
, 2000
Free Software Foundation
class
Q
{
template
<
class
T
>
...
...
@@ -10,7 +10,6 @@ class Q {
};
template
<
template
<
class
>
class
XX
>
class
Y
{
XX
<
int
>
x_
;
// ERROR - Q::X
not a template
XX
<
int
>
x_
;
// ERROR - Q::X
inaccessible XFAIL *-*-*
};
Y
<
Q
::
X
>
y
;
// ERROR - instantiated from here
Y
<
Q
::
X
>
y
;
// ERROR - instantiated from here XFAIL *-*-*
gcc/testsuite/g++.old-deja/g++.pt/ttp60.C
0 → 100644
View file @
69112571
// Origin: "Marcin 'Qrczak' Kowalczyk" <qrczak@knm.org.pl>
// Build don't link:
template
<
template
<
typename
>
class
t1
,
typename
t0
>
t1
<
t0
>
single
()
{
return
single
<
t1
,
t0
>
();
}
template
<
typename
a
>
class
T1
{};
int
main
()
{
single
<
T1
,
int
>
();
}
gcc/testsuite/g++.old-deja/g++.pt/ttp61.C
0 → 100644
View file @
69112571
// Origin: grg at ai dot mit dot edu
// Build don't link:
class
A
;
template
<
template
<
class
Ignored
>
class
base
>
class
C
:
public
base
<
A
>
{
public
:
C
(
A
&
newa
)
:
base
<
A
>
(
newa
)
{}
};
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