repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
c++: -M and modules again
[official-gcc.git]
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
ice9273b.d
blob
2d057246cbd88e9f585782ff02fbd6ce1b59e085
1
/*
2
TEST_OUTPUT:
3
---
4
fail_compilation/ice9273b.d(14): Error: constructor `ice9273b.B.this` no match for implicit `super()` call in constructor
5
---
6
*/
7
8
class
A
9
{
10
this
(
T
)() {}
11
}
12
class
B
:
A
13
{
14
this
() {}
15
}