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
PR c++/85765 - SFINAE and non-type default template arg.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
ref-qual17.C
blob
45ed2a169f0ca94ff9ba97b8d28c486b65189cd7
1
// { dg-do compile { target c++11 } }
2
3
struct A
4
{
5
void foo () &;
6
};
7
8
void
9
bar (__UINTPTR_TYPE__ a)
10
{
11
reinterpret_cast<A *>(a)->foo ();
12
}