Advertisement
Guest User

Untitled

a guest
Feb 24th, 2016
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import std.net.curl;
  2.  
  3. class A {
  4.     HTTP http;
  5.     this(HTTP http) {
  6.         this.http = http;
  7.     }
  8. }
  9.  
  10. void main() {
  11.     auto http = HTTP();
  12.     A a = new A(http);
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement