repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
other
/
array1.C
blob
aff960e5742a6c1776620e475d458b924abe1cb3
1
// Test typeid of multidimensional array with no bounds.
2
// { dg-do compile }
3
4
#include <typeinfo>
5
6
int main()
7
{
8
const char *s = typeid(double[][]).name(); // { dg-error "bounds|confused" }
9
return 0;
10
}