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
67152996
Commit
67152996
authored
26 years ago
by
Jason Merrill
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
x
From-SVN: r21365
parent
bc22fa98
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
2 deletions
+11
-2
gcc/testsuite/g++.old-deja/g++.other/typedef4.C
+9
-0
gcc/testsuite/g++.old-deja/g++.pt/partial2.C
+2
-2
No files found.
gcc/testsuite/g++.old-deja/g++.other/typedef4.C
0 → 100644
View file @
67152996
// Build don't link:
struct
A
{
void
f
();
};
typedef
A
foo
;
void
foo
::
f
()
{
}
This diff is collapsed.
Click to expand it.
gcc/testsuite/g++.old-deja/g++.pt/partial2.C
View file @
67152996
...
...
@@ -14,10 +14,10 @@ typedef unsigned int other1_t;
template
<
class
T
>
struct
foo3
{};
template
<
class
T
,
other1_t
n
>
struct
foo3
<
T
[
n
]
>
;
foo3
<
char
>
bar3
;
foo3
<
char
[
10
]
>
baz3
;
// ERROR - incomplete type -
XFAIL *-*-*
foo3
<
char
[
10
]
>
baz3
;
// ERROR - incomplete type -
typedef
int
other2_t
;
template
<
class
T
>
struct
foo4
{};
template
<
class
T
,
other1_t
n
>
struct
foo4
<
T
[
n
]
>
;
foo4
<
char
>
bar4
;
foo4
<
char
[
10
]
>
baz4
;
// ERROR - incomplete type -
XFAIL *-*-*
foo4
<
char
[
10
]
>
baz4
;
// ERROR - incomplete type -
This diff is collapsed.
Click to expand it.
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