|
| 1 | +/* |
| 2 | + * We want to create a big padding so when the rule looking for the secondary location, we make sure |
| 3 | + * that this file is way bigger that the file were the primary location is. |
| 4 | + * So the secondray location would be out of bound of the first file. |
| 5 | + * |
| 6 | + * ################################################################################### |
| 7 | + * ### .i;;;;i. ### |
| 8 | + * ### iYcviii;vXY: ### |
| 9 | + * ### .YXi .i1c. ### |
| 10 | + * ### .YC. . in7. ### |
| 11 | + * ### .vc. ...... ;1c. ### |
| 12 | + * ### i7, .. .;1; ### |
| 13 | + * ### i7, .. ... .Y1i ### |
| 14 | + * ### ,7v .6MMM@; .YX, ### |
| 15 | + * ### .7;. ..IMMMMMM1 :t7. ### |
| 16 | + * ### .;Y. ;$MMMMMM9. :tc. ### |
| 17 | + * ### vY. .. .nMMM@MMU. ;1v. ### |
| 18 | + * ### i7i ... .#MM@M@C. .....:71i ### |
| 19 | + * ### it: .... $MMM@9;.,i;;;i,;tti ### |
| 20 | + * ### :t7. ..... 0MMMWv.,iii:::,,;St. ### |
| 21 | + * ### .nC. ..... IMMMQ..,::::::,.,czX. ### |
| 22 | + * ### .ct: ....... .ZMMMI..,:::::::,,:76Y. ### |
| 23 | + * ### c2: ......,i..Y$M@t..:::::::,,..inZY ### |
| 24 | + * ### vov ......:ii..c$MBc..,,,,,,,,,,..iI9i ### |
| 25 | + * ### i9Y ......iii:..7@MA,..,,,,,,,,,....;AA: ### |
| 26 | + * ### iIS. ......:ii::..;@MI....,............;Ez. ### |
| 27 | + * ### .I9. ......:i::::...8M1..................C0z. ### |
| 28 | + * ### .z9; ......:i::::,.. .i:...................zWX. ### |
| 29 | + * ### vbv ......,i::::,,. ................. :AQY ### |
| 30 | + * ### c6Y. .,...,::::,,..:t0@@QY. ................ :8bi ### |
| 31 | + * ### :6S. ..,,...,:::,,,..EMMMMMMI. ............... .;bZ, ### |
| 32 | + * ### :6o, .,,,,..:::,,,..i#MMMMMM#v................. YW2. ### |
| 33 | + * ### .n8i ..,,,,,,,::,,,,.. tMMMMM@C:.................. .1Wn ### |
| 34 | + * ### 7Uc. .:::,,,,,::,,,,.. i1t;,..................... .UEi ### |
| 35 | + * ### 7C...::::::::::::,,,,.. .................... vSi. ### |
| 36 | + * ### ;1;...,,::::::,......... .................. Yz: ### |
| 37 | + * ### v97,......... .voC. ### |
| 38 | + * ### izAotX7777777777777777777777777777777777777777Y7n92: ### |
| 39 | + * ### .;CoIIIIIUAA666666699999ZZZZZZZZZZZZZZZZZZZZ6ov. ### |
| 40 | + * ### ### |
| 41 | + * ### ### |
| 42 | + * ### This file MUST be bigger than ### |
| 43 | + * ### InheritedCollidingInterfaceMembers.DifferentFile.cs in size ### |
| 44 | + * ### ### |
| 45 | + * ################################################################################### |
| 46 | + * |
| 47 | + * A lorem ipsum text |
| 48 | + * |
| 49 | + * Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor |
| 50 | + * incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud |
| 51 | + * exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure |
| 52 | + * dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. |
| 53 | + * Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit |
| 54 | + * anim id est laborum. |
| 55 | + * |
| 56 | + * Another one: |
| 57 | + * |
| 58 | + * Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor |
| 59 | + * incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud |
| 60 | + * exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure |
| 61 | + * dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. |
| 62 | + * Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit |
| 63 | + * anim id est laborum. |
| 64 | + * |
| 65 | + */ |
| 66 | + |
| 67 | +using System; |
| 68 | +using System.Collections; |
| 69 | +using System.Collections.Generic; |
| 70 | + |
| 71 | +namespace Tests.Diagnostics |
| 72 | +{ |
| 73 | + public partial interface IAnotherFile |
| 74 | + { |
| 75 | + void Method(int i); |
| 76 | + } |
| 77 | + |
| 78 | + public partial interface IAnotherFile2 |
| 79 | + { |
| 80 | + void Method(int i); // Secondary {{This member collides with 'IAnotherFile.Method(int)'}} |
| 81 | + } |
| 82 | +} |
0 commit comments