Guest User

Untitled

a guest
Oct 24th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
D 0.42 KB | None | 0 0
  1. void test (const(char)[] format, S...)(S arguments)
  2.  
  3. {
  4.  
  5.    
  6.  
  7. }
  8.  
  9.  
  10.  
  11. int main(char[][] args)
  12.  
  13. {
  14.  
  15.     test("foobar", 1, 2, 3);
  16.  
  17.     return 0;
  18.  
  19. }
  20.  
  21. // dmd test4.d
  22. // test4.d(8): Error: template test4.test(const(char)[] format,S...) does not match any function template declaration
  23. // test4.d(8): Error: template test4.test(const(char)[] format,S...) cannot deduce template function from argument types !()(string,int,int,int)
Add Comment
Please, Sign In to add comment