Fix the same speling error in the test case (Duh).

llvm-svn: 71793
This commit is contained in:
Anders Carlsson 2009-05-14 21:20:16 +00:00
parent 24c332b140
commit 0224c67400
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ class A {
};
class B : A {
virtual b* f(); // expected-error{{return type of virtual function 'f' is not covariant with the return type of the function it overrrides ('struct T2::b *' is not derived from 'struct T2::a *')}}
virtual b* f(); // expected-error{{return type of virtual function 'f' is not covariant with the return type of the function it overrides ('struct T2::b *' is not derived from 'struct T2::a *')}}
};
}