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
/
opt
/
ptrmem1.C
blob
0a02a53a9bf7f059cd270f14276c99861c066a81
1
// { dg-options "-O2" }
2
3
class QWidget
4
{
5
public: void repaint( bool erase = 1 );
6
};
7
void f (void)
8
{
9
typedef void (QWidget::*A)(bool);
10
A b = &QWidget::repaint;
11
}
12