Search

February 15, 2023
Issues »
...ok"
   98 | _Static_assert(sizeof(9223372036854775808) == 8, "ok");
      | ^~~~~~~~~~~~~~


Original test:
```
_Static_assert(sizeof(9223372036854775808) == 8...
February 15, 2023
Issues »
...Buclaw <ibuclaw@gdcproject.org> ---
Many more _Static_assert tests that fail with gcc, but pass...
February 15, 2023
Issues »
...assert(sizeof(const restrict volatile char volatile restrict
const) == 1, "ok");
      | ^~~~~~~~~~~~~~


Test content:
```
_Static_assert...
February 14, 2023
Issues »
...EH region

  try {
      a += 2;
  }
  catch (Exception) {
      a += 3;
L2: ;
      a += 100;
  }
  assert(a == 100);
}
```

--
February 13, 2023
Learn »
...false;
		seen[e] = unit;
		return true;
	});
}
unittest {
	assert([ 1, 2, 3, 4, 2, 5, 6...
February 13, 2023
Issues »
...Exception e) {
      a += 3;
L2: ;
      a += 100;
  }
  assert(a == 100);
}

fails to compiler, so I...
February 12, 2023
Genel »
...Merhaba sana
  string str = cast(string)merhaba;
  assert(str == merhaba.data); // -test-ok-
}

alias MS...
February 12, 2023
Issues »
...Static_assert(sizeof("\x1") == 2, "1");
_Static_assert(sizeof("\x20") == 2, "2");
_Static_assert(sizeof...
February 12, 2023
Issues »
...static assertion is not
constant
   64 | _Static_assert(mint1() == -1, "1");
      |                ~~~~~~~~^~~~~
compilable/test22842.c: In...
February 12, 2023
Issues »
...A = 3, B };

_Static_assert(sizeof(enum E) == 1, "1");
_Static_assert(A == 3, "2...
100 101 102 103 104 105 106 107 108 109 110
Next ›   Last »