repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Dead
[official-gcc.git]
/
gomp-20050608-branch
/
gcc
/
testsuite
/
g++.old-deja
/
g++.other
/
init14.C
blob
e3fca53f64fa15e6c9caff0b885885e36fa21587
1
// { dg-do assemble }
2
// Origin: bkoz@nabi.net
3
4
typedef struct
5
{
6
int count;
7
} mbstate_t;
8
9
struct fpos
10
{
11
mbstate_t _M_st;
12
fpos(int __pos)
13
: _M_st() {
14
}
15
};
16
17
int main ()
18
{
19
fpos f (2);
20
}
21
22