diff options
author | Alex AUVOLAT <alex.auvolat@ens.fr> | 2014-01-09 11:49:54 +0100 |
---|---|---|
committer | Alex AUVOLAT <alex.auvolat@ens.fr> | 2014-01-09 11:49:54 +0100 |
commit | d0798a5e0d3828b491ed35b2f62edf6aef199e2b (patch) | |
tree | 56a17e80d66da133da675e6f6a2ad6d9138520d2 /tests/typing/good | |
parent | 56fdab2ff0caaaa88a152ef06aef821f432fe488 (diff) | |
download | LPC-Projet-d0798a5e0d3828b491ed35b2f62edf6aef199e2b.tar.gz LPC-Projet-d0798a5e0d3828b491ed35b2f62edf6aef199e2b.zip |
Reject redefinition of virtual methods with different return type.
Diffstat (limited to 'tests/typing/good')
-rw-r--r-- | tests/typing/good/testfile-return-type-redef.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/typing/good/testfile-return-type-redef.cpp b/tests/typing/good/testfile-return-type-redef.cpp new file mode 100644 index 0000000..ff14d00 --- /dev/null +++ b/tests/typing/good/testfile-return-type-redef.cpp @@ -0,0 +1,11 @@ +class A { + public: + int f(int x); +}; + +class B : public A { + public: + void f(int x); +}; + +int main() {} |