From 0224c6740066d6416b05e957a7b50823e00d01fe Mon Sep 17 00:00:00 2001 From: Anders Carlsson Date: Thu, 14 May 2009 21:20:16 +0000 Subject: [PATCH] Fix the same speling error in the test case (Duh). llvm-svn: 71793 --- clang/test/SemaCXX/virtual-override.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/test/SemaCXX/virtual-override.cpp b/clang/test/SemaCXX/virtual-override.cpp index 1a917fee0319..fc5d77949599 100644 --- a/clang/test/SemaCXX/virtual-override.cpp +++ b/clang/test/SemaCXX/virtual-override.cpp @@ -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 *')}} }; }