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
/
udlit-namespace-using-directive.C
blob
bd1f2066eade478a9bd89f48100dece489b979ca
1
// { dg-do compile { target c++11 } }
2
3
int operator""_t(long long unsigned) {
4
return 0;
5
}
6
7
namespace foo {
8
int operator""_t(long long unsigned) {
9
return 0;
10
}
11
}
12
13
int main() {
14
using foo::operator""_t;
15
10_t;
16
}