Thread overview
[Issue 13760] [REG2.067a] Cannot deduce function for object.get
[Issue 13760] Cannot deduce function for object.get
Nov 21, 2014
Kenji Hara
November 21, 2014
https://issues.dlang.org/show_bug.cgi?id=13760

--- Comment #1 from sinkuupump@gmail.com ---
Sorry, the test case is wrong.

Test case:
```
class C { }

void main()
{
    C[int] aa;
    func(aa, new C);
}

void func(K, V)(inout(V[K]) aa, inout(V) val)
{
}
```

--
November 21, 2014
https://issues.dlang.org/show_bug.cgi?id=13760

Kenji Hara <k.hara.pg@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |pull
            Summary|Cannot deduce function for  |[REG2.067a] Cannot deduce
                   |object.get                  |function for object.get

--- Comment #2 from Kenji Hara <k.hara.pg@gmail.com> ---
https://github.com/D-Programming-Language/dmd/pull/4156

--
November 22, 2014
https://issues.dlang.org/show_bug.cgi?id=13760

--- Comment #3 from github-bugzilla@puremagic.com ---
Commits pushed to master at https://github.com/D-Programming-Language/dmd

https://github.com/D-Programming-Language/dmd/commit/92d878bdaa2fb729026aa67e6bab9f1b5440e830 fix Issue 13760 - Cannot deduce function for object.get

https://github.com/D-Programming-Language/dmd/commit/ac8ace7e8b3b9104da3a75179b23c97def5fba86 Merge pull request #4156 from 9rnsr/fix13760

[REG2.067a] Issue 13760 - Cannot deduce function for object.get

--
November 22, 2014
https://issues.dlang.org/show_bug.cgi?id=13760

github-bugzilla@puremagic.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED

--
February 19, 2015
https://issues.dlang.org/show_bug.cgi?id=13760

--- Comment #4 from github-bugzilla@puremagic.com ---
Commits pushed to 2.067 at https://github.com/D-Programming-Language/dmd

https://github.com/D-Programming-Language/dmd/commit/92d878bdaa2fb729026aa67e6bab9f1b5440e830 fix Issue 13760 - Cannot deduce function for object.get

https://github.com/D-Programming-Language/dmd/commit/ac8ace7e8b3b9104da3a75179b23c97def5fba86 Merge pull request #4156 from 9rnsr/fix13760

--