[Bug c++/69283] Auto deduction fails when ADL is required

2016-01-15 Thread gccbugs at astrant dot net
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69283 --- Comment #1 from gccbugs at astrant dot net --- I think this may be a duplicate of https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67835.

[Bug c++/69283] New: Auto deduction fails when ADL is required

2016-01-14 Thread gccbugs at astrant dot net
++ Assignee: unassigned at gcc dot gnu.org Reporter: gccbugs at astrant dot net Target Milestone: --- The following code ``` namespace Ape { struct Type {}; template auto f1(T const& v){ return true; } } namespace Ba