Skip to content

Commit 693cfa3

Browse files
committed
Add extra imports to test
1 parent a3c82c7 commit 693cfa3

File tree

2 files changed

+7
-2
lines changed
  • Fixtures/MixedTargets/BasicMixedTargets

2 files changed

+7
-2
lines changed

Fixtures/MixedTargets/BasicMixedTargets/MixedTargetWithCustomPaths/Sources/OldCar.m

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
#import <Foundation/Foundation.h>
22

3-
// All three import statements should be supported.
3+
// The below import statements should be supported.
44
#import "MixedTargetWithCustomPaths/Sources/Public/OldCar.h"
55
#import "OldCar.h"
66
#import "Public/OldCar.h"
7+
#import <OldCar.h>
8+
#import <Public/OldCar.h>
79

810
// Import the Swift part of the module.
911
#import "MixedTargetWithCustomPaths-Swift.h"
Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
#import <Foundation/Foundation.h>
22

3+
// The below import statements should be supported.
34
#import "CarPart.h"
45
#import "include/CarPart.h"
6+
#import <CarPart.h>
7+
#import <include/CarPart.h>
58

69
@implementation CarPart
7-
@end
10+
@end

0 commit comments

Comments
 (0)