MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail153.d
blob96cd383b50621dde30d9bc5caa1a8799aa0686c0
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail153.d(10): Error: class `fail153.Bar` cannot inherit from class `Foo` because it is `final`
5 ---
6 */
8 final class Foo { }
10 class Bar : Foo { }