types 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. struct A {
  2. int a;
  3. };
  4. int intFunction() {
  5. return 1;
  6. }
  7. long longFunction() {
  8. return 3L;
  9. }
  10. bool boolFunction() {
  11. return true;
  12. }
  13. float floatFunction() {
  14. return 2.0;
  15. }
  16. int* intFunction(int* i) {
  17. return i;
  18. }
  19. long* longFunction(long* l) {
  20. return l;
  21. }
  22. bool* boolFunction(bool* b) {
  23. return b;
  24. }
  25. float* floatFunction(float* f) {
  26. return f;
  27. }
  28. A* structFunction(A* a) {
  29. return a;
  30. }
  31. void main() {
  32. int i = intFunction();
  33. test(i);
  34. long l = longFunction();
  35. test(l);
  36. bool b = boolFunction();
  37. test(b);
  38. float f = floatFunction();
  39. test(f);
  40. test(*intFunction(&i));
  41. test(*longFunction(&l));
  42. test(*boolFunction(&b));
  43. test(*floatFunction(&f));
  44. test(intFunction(&i)[0]);
  45. test(longFunction(&l)[0]);
  46. test(boolFunction(&b)[0]);
  47. test(floatFunction(&f)[0]);
  48. A a;
  49. a.a = 53453;
  50. test(structFunction(&a)->a);
  51. structFunction(&a)->a = 123443;
  52. structFunction(&a)[0].a += 3;
  53. (*structFunction(&a)).a += 1;
  54. (&a)->a += 4;
  55. (*(&a)).a += 5;
  56. test(structFunction(&a)->a);
  57. }