Skip to content

Instantly share code, notes, and snippets.

@thiagomg
Created April 28, 2015 00:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thiagomg/6d86ce3188809d329560 to your computer and use it in GitHub Desktop.
Save thiagomg/6d86ce3188809d329560 to your computer and use it in GitHub Desktop.
//Saída do programa:
TestCopy<> t1; //[CONSTR 1]
TestCopy<> t2 {1}; //[CONSTR 2:1]
TestCopy<> t3 = t2; //[COPY]
TestCopy<> t4 {t2}; //[COPY]
TestCopy<> t5 = TestCopy<>{5}; //[CONSTR 2:5]
TestCopy<> t6 = {6}; //[CONSTR 2:6]
TestCopy<> t7 = 7; //[CONSTR 2:7]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment