File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
lldb/test/API/lang/swift/archetype_in_expression Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -21,18 +21,18 @@ def test(self):
2121 self .expect ("expr U.self" , substrs = ["[Int].Type" ])
2222 # Assert that frame variable doesn't work
2323 self .expect ("v First.self" ,
24- substrs = ["no variable or instance variable named 'First' found in this frame " ],
24+ substrs = ["use of undeclared identifier 'First'" ],
2525 error = True )
2626 self .expect ("v T.self" ,
27- substrs = ["no variable or instance variable named 'T' found in this frame " ],
27+ substrs = ["use of undeclared identifier 'T'" ],
2828 error = True )
2929
3030 # Check that referring to a shadowed archetype works correctly.
3131 lldbutil .continue_to_breakpoint (process , breakpoint )
3232 self .expect ("expr T.self" , substrs = ["String.Type" ])
3333 # Assert that frame variable doesn't work
3434 self .expect ("v T.self" ,
35- substrs = ["no variable or instance variable named 'T' found in this frame " ],
35+ substrs = ["use of undeclared identifier 'T'" ],
3636 error = True )
3737
3838 # Check that you refer to archetypes in nested generic functions.
You can’t perform that action at this time.
0 commit comments