Test case: void foo()( const int[] arr) {} /// void foo()(immutable int[] arr) {} /// void foo()( ref int[] arr) {} /// void foo()( lazy int[] arr) {} /// void foo()( auto ref int[] arr) {} /// void foo()( scope int[] arr) {} /// void foo()( in int[] arr) {} /// void foo()( inout int[] arr) {} /// For the last 'foo', compiler outputs following declaration in di file: template foo() { void foo(int[] arr) // missing 'inout' { } }
https://github.com/D-Programming-Language/dmd/pull/2648
Commits pushed to master at https://github.com/D-Programming-Language/dmd https://github.com/D-Programming-Language/dmd/commit/e9c4e41bb8fa5e63a5b294aa028317b66abee611 fix Issue 11217 - Header generation does not output 'inout' storage class on parameters https://github.com/D-Programming-Language/dmd/commit/81fd5b3afef42a9ebb48d5efaf4a084eb5c5c825 Merge pull request #2648 from 9rnsr/fix11217 Issue 11217 - Header generation does not output 'inout' storage class on parameters