brush-shell 0.4.0

Rust-implemented shell focused on POSIX and bash compatibility
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
name: "Nameref variables"
cases:
  - name: "Nameref basic read"
    known_failure: true
    stdin: |
      target="hello world"
      declare -n ref=target
      echo "ref: $ref"
      echo "target: $target"

  - name: "Nameref write through reference"
    known_failure: true
    stdin: |
      target="original"
      declare -n ref=target
      echo "before: $target"
      ref="modified"
      echo "after: $target"
      echo "ref: $ref"

  - name: "Nameref append with +="
    known_failure: true
    stdin: |
      target="hello"
      declare -n ref=target
      ref+=" world"
      echo "target: $target"
      echo "ref: $ref"

  - name: "Nameref to unset variable"
    known_failure: true
    stdin: |
      declare -n ref=nonexistent
      echo "ref: '${ref}'"
      echo "ref set: '${ref+SET}'"
      ref="now exists"
      echo "ref: $ref"
      echo "nonexistent: $nonexistent"

  - name: "Nameref reassignment - change target"
    known_failure: true
    stdin: |
      var1="first"
      var2="second"
      declare -n ref=var1
      echo "ref -> var1: $ref"
      ref=var2
      echo "var1 after: $var1"
      # To change what a nameref points to, use declare -n again
      declare -n ref=var2
      echo "ref -> var2: $ref"

  - name: "Nameref chained (A -> B -> C)"
    known_failure: true
    stdin: |
      ultimate="final_value"
      declare -n middle=ultimate
      declare -n top=middle
      echo "top: $top"
      echo "middle: $middle"
      top="changed"
      echo "ultimate: $ultimate"

  - name: "Nameref circular reference"
    known_failure: true
    ignore_stderr: true
    stdin: |
      declare -n a=b
      declare -n b=a
      echo "a: '${a}'"
      echo "done"

  - name: "Nameref self-reference"
    known_failure: true
    ignore_stderr: true
    stdin: |
      declare -n self=self
      echo "self: '${self}'"
      echo "done"

  - name: "Nameref in function - pass by reference"
    known_failure: true
    stdin: |
      modify_var() {
          local -n ref=$1
          ref="modified by function"
      }

      myvar="original"
      echo "before: $myvar"
      modify_var myvar
      echo "after: $myvar"

  - name: "Nameref in function scope - local nameref to outer var"
    known_failure: true
    stdin: |
      outer="outer_value"
      inner_func() {
          local -n ref=outer
          echo "inside func: $ref"
          ref="modified_by_func"
      }
      echo "before: $outer"
      inner_func
      echo "after: $outer"

  - name: "Nameref in function - multiple namerefs (swap)"
    known_failure: true
    stdin: |
      swap() {
          local -n x=$1
          local -n y=$2
          local tmp="$x"
          x="$y"
          y="$tmp"
      }
      a="alpha"
      b="beta"
      echo "before: a=$a b=$b"
      swap a b
      echo "after: a=$a b=$b"

  - name: "Nameref with export"
    stdin: |
      target="exported_val"
      declare -n ref=target
      export ref
      declare -p target | grep -o 'x' | head -1 || echo "no export flag"

  - name: "Nameref unset through ref removes target"
    known_failure: true
    stdin: |
      target="value"
      declare -n ref=target
      echo "before: target=$target ref=$ref"
      unset ref
      echo "after: target='${target}' ref='${ref}'"
      # ref still exists as a nameref, but target is gone
      declare -p ref 2>/dev/null && echo "ref still declared"
      declare -p target 2>/dev/null || echo "target is gone"

  - name: "Nameref unset target directly"
    known_failure: true
    stdin: |
      target="exists"
      declare -n ref=target
      echo "ref: $ref"
      unset target
      echo "ref after unset: '${ref}'"

  - name: "Nameref array append with +="
    known_failure: true
    stdin: |
      target=(a b)
      declare -n ref=target
      ref+=(c d)
      echo "target: ${target[@]}"
      echo "count: ${#target[@]}"
      declare -p target

  - name: "Nameref array element unset"
    known_failure: true
    stdin: |
      target=(a b c d)
      declare -n ref=target
      unset 'ref[2]'
      declare -p target

  - name: "Nameref array slicing"
    known_failure: true
    stdin: |
      target=(a b c d e)
      declare -n ref=target
      echo "slice: ${ref[@]:1:2}"
      echo "all: ${ref[@]}"
      echo "count: ${#ref[@]}"

  - name: "Nameref to array element"
    known_failure: true
    stdin: |
      arr=(zero one two three)
      declare -n ref='arr[2]'
      echo "ref: $ref"
      ref="changed"
      echo "arr[2]: ${arr[2]}"

  - name: "Nameref in subshell"
    known_failure: true
    stdin: |
      target="original"
      declare -n ref=target
      (ref="subshell_value"; echo "inside: $target")
      echo "outside: $target"

  - name: "Nameref in command substitution"
    known_failure: true
    stdin: |
      target="original"
      declare -n ref=target
      result=$(ref="cmd_sub_value"; echo "$target")
      echo "result: $result"
      echo "target: $target"

  - name: "Nameref with integer attribute"
    known_failure: true
    stdin: |
      target=0
      declare -ni ref=target
      ref="hello"
      echo "target: $target"
      ref=42
      echo "target: $target"
      declare -p ref
      declare -p target

  - name: "Nameref with set -u and unset target"
    known_failure: true
    ignore_stderr: true
    stdin: |
      set -u
      declare -n ref=unset_target
      echo "$ref"
      echo "should not print"

  - name: "Nameref to empty string target name"
    ignore_stderr: true
    stdin: |
      declare -n ref=""
      echo "ref: '${ref}'"
      ref="value" 2>/dev/null
      echo "done"

  - name: "Multiple namerefs to same target"
    known_failure: true
    stdin: |
      target="initial"
      declare -n ref1=target
      declare -n ref2=target
      ref1="from_ref1"
      echo "ref2: $ref2"
      echo "target: $target"
      ref2="from_ref2"
      echo "ref1: $ref1"
      echo "target: $target"

  - name: "Circular reference in assignment context"
    known_failure: true
    ignore_stderr: true
    stdin: |
      declare -n a=b
      declare -n b=a
      a="value" 2>/dev/null
      echo "exit: $?"
      echo "done"

  - name: "Nameref with prefix enumeration"
    stdin: |
      declare -n ref_one=target1
      declare -n ref_two=target2
      regular_ref_var="not a nameref"
      echo "prefix: ${!ref_@}"

  - name: "Nameref with local in nested functions"
    known_failure: true
    stdin: |
      outer() {
          local myval="outer_value"
          inner
          echo "after inner: $myval"
      }
      inner() {
          local -n ref=myval
          echo "ref sees: $ref"
          ref="modified_by_inner"
      }
      outer

  - name: "Nameref for-in loop changes target"
    known_failure: true
    stdin: |
      var1="a"
      var2="b"
      var3="c"
      declare -n ref
      for ref in var1 var2 var3; do
          echo "ref=$ref"
      done
      echo "var1=$var1 var2=$var2 var3=$var3"

  - name: "Nameref to array element - arithmetic increment"
    known_failure: true
    stdin: |
      arr=(10 20 30 40)
      declare -n ref='arr[2]'
      echo "before: $ref"
      (( ref++ ))
      echo "after: $ref"
      echo "arr[2]: ${arr[2]}"

  - name: "Nameref to array element - arithmetic compound assign"
    known_failure: true
    stdin: |
      arr=(100 200 300)
      declare -n ref='arr[1]'
      echo "before: $ref"
      (( ref += 50 ))
      echo "after: $ref"
      echo "arr[1]: ${arr[1]}"

  - name: "Nameref to array element - arithmetic expression"
    known_failure: true
    stdin: |
      arr=(100 200 300)
      declare -n ref='arr[2]'
      (( ref = ref * 2 ))
      echo "arr[2]: ${arr[2]}"

  - name: "Nameref to array element - string append"
    known_failure: true
    stdin: |
      arr=(hello world)
      declare -n ref='arr[0]'
      ref+=" there"
      echo "arr[0]: ${arr[0]}"

  - name: "Nameref to array element - length"
    known_failure: true
    stdin: |
      arr=("short" "a longer string here" "x")
      declare -n ref='arr[1]'
      echo "len: ${#ref}"

  - name: "Nameref to array element - parameter transformations"
    known_failure: true
    stdin: |
      arr=("hello world" "foo")
      declare -n ref='arr[0]'
      echo "upper: ${ref^^}"
      echo "Q: ${ref@Q}"

  - name: "Nameref to array element - substring"
    known_failure: true
    stdin: |
      arr=("abcdefgh" "xyz")
      declare -n ref='arr[0]'
      echo "sub: ${ref:1:3}"

  - name: "Nameref to array element - pattern substitution"
    known_failure: true
    stdin: |
      arr=("hello world hello" "x")
      declare -n ref='arr[0]'
      echo "first: ${ref/hello/bye}"
      echo "all: ${ref//hello/bye}"

  - name: "Nameref to array element - default value"
    known_failure: true
    stdin: |
      arr=("" "val")
      declare -n ref='arr[0]'
      echo "default: ${ref:-fallback}"

  - name: "Nameref to array element - negative index"
    known_failure: true
    stdin: |
      arr=(a b c d e)
      declare -n ref='arr[-1]'
      echo "ref: $ref"

  - name: "Nameref to associative array element"
    known_failure: true
    stdin: |
      declare -A map=([foo]=bar [baz]=qux)
      declare -n ref='map[foo]'
      echo "ref: $ref"
      ref="changed"
      echo "map_foo: ${map[foo]}"

  - name: "Nameref to array element - unset through ref"
    known_failure: true
    stdin: |
      arr=(a b c d)
      declare -n ref='arr[2]'
      unset ref
      declare -p arr

  - name: "Nameref chain 4 levels"
    known_failure: true
    stdin: |
      final="deep"
      declare -n c=final
      declare -n b=c
      declare -n a=b
      echo "a: $a"
      a="changed"
      echo "final: $final"

  - name: "Nameref 3-level chain to array element"
    known_failure: true
    stdin: |
      arr=(A B C)
      declare -n mid='arr[1]'
      declare -n top=mid
      echo "top: $top"
      top="CHANGED"
      echo "arr[1]: ${arr[1]}"

  - name: "Nameref to associative array - keys and values"
    known_failure: true
    stdin: |
      declare -A map=([x]=1 [y]=2)
      declare -n ref=map
      echo "x: ${ref[x]}"
      ref[z]=3
      echo "z: ${map[z]}"
      for k in "${!ref[@]}"; do echo "key=$k"; done | sort

  - name: "Nameref - declare -p shows nameref attribute"
    stdin: |
      target="hello"
      declare -n ref=target
      declare -p ref
      declare -p target

  - name: "Nameref - test -v follows nameref"
    known_failure: true
    stdin: |
      declare -n ref=nonesuch
      [[ -v ref ]] && echo "set" || echo "unset"
      nonesuch="now"
      [[ -v ref ]] && echo "set" || echo "unset"

  - name: "Nameref to array - length and keys"
    known_failure: true
    stdin: |
      arr=(a b c d e)
      declare -n ref=arr
      echo "len: ${#ref[@]}"
      echo "keys: ${!ref[@]}"
      echo "elem0len: ${#ref}"

  - name: "Nameref with printf -v"
    known_failure: true
    stdin: |
      declare -n ref=formatted
      printf -v ref "num=%d" 42
      echo "formatted: $formatted"

  - name: "Nameref - declare +n removes attribute"
    known_failure: true
    stdin: |
      target="value"
      declare -n ref=target
      echo "before: $ref"
      declare +n ref
      echo "after: $ref"
      declare -p ref

  - name: "Nameref to IFS"
    known_failure: true
    stdin: |
      declare -n ref=IFS
      saved="$IFS"
      ref=":"
      echo "ifs: '$IFS'"
      IFS="$saved"

  - name: "Nameref to array - whole array assignment"
    known_failure: true
    stdin: |
      declare -n ref=myarr
      ref=(x y z)
      declare -p myarr

  - name: "Nameref local -n recursive function"
    known_failure: true
    stdin: |
      count_down() {
          local v=$1
          if (( v <= 0 )); then return; fi
          local -n o=result
          o+="$v "
          count_down $((v - 1))
      }
      result=""
      count_down 3
      echo "result: $result"

  - name: "Nameref to array - negative index access"
    known_failure: true
    stdin: |
      arr=(a b c d e)
      declare -n ref=arr
      echo "last: ${ref[-1]}"

  - name: "Nameref in eval"
    known_failure: true
    stdin: |
      target="eval_val"
      declare -n ref=target
      eval 'echo "eval: $ref"'

  - name: "Nameref in here-string"
    known_failure: true
    stdin: |
      target="here_data"
      declare -n ref=target
      cat <<< "$ref"

  - name: "Nameref in extended test operators"
    known_failure: true
    stdin: |
      target="abc"
      declare -n ref=target
      [[ $ref == abc ]] && echo "eq ok"
      [[ $ref =~ ^a.c$ ]] && echo "regex ok"
      [[ $ref < bcd ]] && echo "lt ok"

  - name: "Nameref to sparse array"
    known_failure: true
    stdin: |
      declare -a arr
      arr[5]=five
      arr[10]=ten
      declare -n ref=arr
      echo "keys: ${!ref[@]}"
      echo "len: ${#ref[@]}"
      echo "elem5: ${ref[5]}"

  - name: "Nameref concurrent writes through two refs"
    known_failure: true
    stdin: |
      target="init"
      declare -n r1=target
      declare -n r2=target
      r1+="_one"
      r2+="_two"
      echo "target: $target"

  - name: "Nameref to array element - ternary in arithmetic"
    stdin: |
      arr=(0 1 0)
      declare -n ref='arr[1]'
      echo "ternary: $(( ref ? 100 : 200 ))"

  - name: "Nameref chain to assoc array element"
    known_failure: true
    stdin: |
      declare -A map=([k]=v)
      declare -n mid='map[k]'
      declare -n top=mid
      echo "top: $top"

  - name: "Nameref to array element - set test"
    known_failure: true
    stdin: |
      arr=(a b c)
      declare -n ref='arr[1]'
      echo "set: ${ref+SET}"
      unset 'arr[1]'
      echo "unset: ${ref+SET}"

  - name: "Nameref local -n overrides outer nameref"
    known_failure: true
    stdin: |
      a="A"
      b="B"
      declare -n ref=a
      f() {
          local -n ref=b
          echo "inner: $ref"
      }
      f
      echo "outer: $ref"

  - name: "Nameref target lowercase transform"
    known_failure: true
    stdin: |
      declare -l target=""
      declare -n ref=target
      ref="HELLO"
      echo "target: $target"

  - name: "Nameref export -n unexports target"
    known_failure: true
    stdin: |
      export target="val"
      declare -n ref=target
      export -n ref
      env | grep "^target=" | head -1 || echo "not exported"

  - name: "Nameref to array - push via index"
    known_failure: true
    stdin: |
      arr=(a b)
      declare -n ref=arr
      ref[${#ref[@]}]="c"
      echo "arr: ${ref[@]}"
      echo "len: ${#ref[@]}"

  - name: "Nameref with readonly target - write fails"
    ignore_stderr: true
    stdin: |
      target="immutable"
      declare -n ref=target
      readonly ref
      ref="attempt" 2>/dev/null
      echo "exit: $?"
      echo "target: $target"

  - name: "Nameref - declare -a through nameref applies to target"
    known_failure: true
    stdin: |
      declare -n ref=myarr
      declare -a ref
      ref=(1 2 3)
      declare -p myarr 2>/dev/null || echo "not found"

  - name: "Nameref - declare -A through nameref applies to target"
    known_failure: true
    stdin: |
      declare -n ref=mymap
      declare -A ref
      ref=([a]=1 [b]=2)
      echo "a: ${mymap[a]}"
      echo "b: ${mymap[b]}"

  - name: "Nameref to array element - test -v treats resolved name literally"
    known_failure: true
    stdin: |
      # In bash, [[ -v ref ]] where ref→arr[2] looks for a variable literally
      # named "arr[2]", not array element arr at index 2. So it's always unset.
      arr=(a b c d)
      declare -n ref='arr[2]'
      echo "ref expands to: $ref"
      [[ -v ref ]] && echo "set" || echo "unset"
      unset 'arr[2]'
      [[ -v ref ]] && echo "set" || echo "unset"

  - name: "Nameref to array element - test -v with nonexistent index"
    known_failure: true
    stdin: |
      arr=(a b c)
      declare -n ref='arr[5]'
      [[ -v ref ]] && echo "set" || echo "unset"

  - name: "Nameref to arr[@] expands all elements"
    known_failure: true
    stdin: |
      arr=(x y z)
      declare -n ref='arr[@]'
      echo "ref: $ref"

  - name: "Nameref circular with 3 nodes"
    known_failure: true
    ignore_stderr: true
    stdin: |
      declare -n c1=c2
      declare -n c2=c3
      declare -n c3=c1
      echo "c1: '${c1}'"
      echo "exit: $?"

  - name: "Nameref in case pattern"
    known_failure: true
    stdin: |
      target="hello"
      declare -n ref=target
      case $ref in
        hello) echo "matched hello" ;;
        *) echo "no match" ;;
      esac

  - name: "Nameref local shadowing in nested functions"
    known_failure: true
    stdin: |
      a="A"
      b="B"
      f() {
          local -n ref=a
          g
          echo "f ref: $ref"
      }
      g() {
          local -n ref=b
          echo "g ref: $ref"
          ref="modified_B"
      }
      f
      echo "a=$a b=$b"

  - name: "Nameref to special variable RANDOM"
    known_failure: true
    stdin: |
      declare -n ref=RANDOM
      r1=$ref
      r2=$ref
      [[ "$r1" != "$r2" ]] && echo "different (dynamic)" || echo "same"

  - name: "Nameref for-in loop retargets through iteration"
    known_failure: true
    stdin: |
      var1="A"
      var2="B"
      var3="C"
      declare -n ref
      for ref in var1 var2 var3; do
          echo "ref=$ref"
      done
      echo "var1=$var1 var2=$var2 var3=$var3"

  #
  # Additional edge cases: bare declare -n, invalid targets
  #

  - name: "Nameref declared without value - bare declare -n"
    known_failure: true
    stdin: |
      declare -n ref
      echo "ref: '${ref}'"
      declare -p ref 2>/dev/null
      ref="value"
      echo "ref after assign: '${ref}'"
      declare -p ref 2>/dev/null

  - name: "Nameref declared without value - expansion behavior"
    stdin: |
      declare -n ref
      echo "set: ${ref+SET}"
      echo "default: ${ref:-fallback}"
      echo "length: ${#ref}"

  - name: "Nameref to numeric-only target name"
    known_failure: true

    ignore_stderr: true
    stdin: |
      declare -n ref=123
      echo "exit: $?"
      echo "ref: '${ref}'"
      echo "done"

  - name: "Nameref to name with special characters"
    known_failure: true

    ignore_stderr: true
    stdin: |
      declare -n ref="a-b"
      echo "exit1: $?"
      declare -n ref2="a.b"
      echo "exit2: $?"
      declare -n ref3="a+b"
      echo "exit3: $?"
      echo "done"

  - name: "Nameref to name with spaces"
    known_failure: true

    ignore_stderr: true
    stdin: |
      declare -n ref="a b"
      echo "exit: $?"
      echo "done"

  - name: "Nameref to positional parameter name"
    known_failure: true

    ignore_stderr: true
    stdin: |
      declare -n ref=1
      echo "exit: $?"
      echo "done"

  - name: "Nameref to @ or *"
    known_failure: true

    ignore_stderr: true
    stdin: |
      declare -n ref1="@"
      echo "exit1: $?"
      declare -n ref2="*"
      echo "exit2: $?"
      echo "done"

  #
  # Assignment semantics clarity
  #

  - name: "Nameref assignment writes to target not retargets"
    known_failure: true
    stdin: |
      var1="first"
      var2="second"
      declare -n ref=var1
      ref=var2
      echo "var1: $var1"
      echo "ref: $ref"
      declare -p ref
      declare -p var1

  #
  # unset -n edge cases
  #

  - name: "Unset -n on non-nameref variable"
    known_failure: true
    stdin: |
      var="value"
      unset -n var
      echo "var: '${var}'"
      declare -p var 2>/dev/null || echo "var is gone"

  - name: "Unset vs unset -n on same nameref"
    known_failure: true
    stdin: |
      target="value"
      declare -n ref=target
      echo "before: target=$target ref=$ref"
      unset ref
      echo "after unset ref: target='${target}' ref='${ref}'"
      target="restored"
      echo "target restored: ref=$ref"

  - name: "Unset -n then recreate nameref"
    known_failure: true
    stdin: |
      target="hello"
      declare -n ref=target
      echo "before: $ref"
      unset -n ref
      echo "after unset -n:"
      declare -p ref 2>/dev/null || echo "ref gone"
      declare -n ref=target
      echo "recreated: $ref"

  - name: "Unset nameref where target is already unset"
    known_failure: true
    stdin: |
      declare -n ref=nonexistent
      unset ref
      echo "exit: $?"
      declare -p ref 2>/dev/null && echo "ref still exists" || echo "ref gone"

  - name: "Unset -n nameref where target is already unset"
    known_failure: true
    stdin: |
      declare -n ref=nonexistent
      unset -n ref
      echo "exit: $?"
      declare -p ref 2>/dev/null || echo "ref gone"

  - name: "Unset -v on nameref removes target"
    known_failure: true
    stdin: |
      target="value"
      declare -n ref=target
      unset -v ref
      echo "target: '${target}'"
      declare -p ref 2>/dev/null && echo "ref exists"
      declare -p target 2>/dev/null || echo "target gone"

  - name: "Unset nameref in function scope"
    known_failure: true
    stdin: |
      target="global"
      f() {
          local -n ref=target
          unset ref
          echo "inside f: target='${target}'"
      }
      f
      echo "outside: target='${target}'"

  #
  # declare flag combinations with -n
  #

  - name: "Nameref with uppercase attribute -u"
    known_failure: true
    stdin: |
      declare -u target
      declare -n ref=target
      ref="hello world"
      echo "target: $target"
      echo "ref: $ref"

  - name: "Nameref combined -nx export"
    known_failure: true
    ignore_stderr: true
    stdin: |
      declare -nx ref=MYVAR
      ref="exported_value"
      echo "MYVAR: $MYVAR"
      declare -p ref
      declare -p MYVAR 2>/dev/null

  - name: "Nameref combined -na conflict"
    known_failure: true
    ignore_stderr: true
    stdin: |
      declare -na ref=target
      echo "exit: $?"
      declare -p ref 2>/dev/null

  - name: "Nameref combined -nA conflict"
    known_failure: true
    ignore_stderr: true
    stdin: |
      declare -nA ref=target
      echo "exit: $?"
      declare -p ref 2>/dev/null

  - name: "Declare -rn readonly nameref"
    known_failure: true
    ignore_stderr: true
    stdin: |
      target="val"
      declare -rn ref=target
      echo "ref: $ref"
      declare -n ref=other 2>/dev/null
      echo "retarget exit: $?"
      unset -n ref 2>/dev/null
      echo "unset -n exit: $?"
      declare -p ref

  #
  # Readonly deeper edge cases
  #

  - name: "Readonly nameref - cannot unset -n"
    known_failure: true
    ignore_stderr: true
    stdin: |
      declare -n ref=target
      readonly ref
      unset -n ref 2>/dev/null
      echo "exit: $?"
      declare -p ref

  - name: "Make target readonly through nameref"
    known_failure: true
    ignore_stderr: true
    stdin: |
      target="value"
      declare -n ref=target
      readonly ref
      declare -p target
      target="new" 2>/dev/null
      echo "target write exit: $?"

  #
  # Export deeper edge cases
  #

  - name: "Export through nameref - child sees it"
    known_failure: true
    stdin: |
      declare -n ref=MY_EXPORT
      ref="exported_value"
      export ref
      bash -c 'echo "child: $MY_EXPORT"'

  - name: "Unexport through nameref with declare +x"
    known_failure: true
    stdin: |
      export target="was_exported"
      declare -n ref=target
      declare +x ref
      env | grep "^target=" || echo "not exported"
      echo "target: $target"

  #
  # Parameter expansion - missing operators
  #

  - name: "Nameref with := assign default creates target"
    known_failure: true
    stdin: |
      declare -n ref=brand_new
      echo "before: '${brand_new}'"
      echo "assign: ${ref:=created}"
      echo "after: $brand_new"
      declare -p brand_new

  - name: "Nameref with :? error on unset"
    known_failure: true  # error prefix differs: brush prints "error:" vs bash prints "bash: line N:"
    ignore_stderr: true
    stdin: |
      declare -n ref=missing
      ( echo "${ref:?variable is required}" ) 2>&1 | tail -1
      echo "outer continues"

  - name: "Nameref with @E escape"
    known_failure: true
    stdin: |
      target='hello\tworld\n'
      declare -n ref=target
      echo "E: ${ref@E}"

  - name: "Nameref substring with negatives"
    known_failure: true
    stdin: |
      target="abcdefghij"
      declare -n ref=target
      echo "offset 3: ${ref:3}"
      echo "offset 3 len 4: ${ref:3:4}"
      echo "negative offset: ${ref: -3}"
      echo "negative offset len: ${ref: -3:2}"

  - name: "Nameref with case modification operators"
    known_failure: true
    stdin: |
      target="hello world"
      declare -n ref=target
      echo "^: ${ref^}"
      echo "^^: ${ref^^}"
      echo ",: ${ref,}"
      echo ",,: ${ref,,}"

  - name: "Nameref with pattern removal prefix and suffix anchors"
    known_failure: true
    stdin: |
      target="hello hello hello"
      declare -n ref=target
      echo "prefix: ${ref/#hello/bye}"
      echo "suffix: ${ref/%hello/bye}"

  #
  # Indirection ${!ref} interaction
  #

  - name: "Nameref indirection on chain"
    known_failure: true
    stdin: |
      ultimate="deep_value"
      declare -n middle=ultimate
      declare -n top=middle
      echo "!top: ${!top}"
      echo "!middle: ${!middle}"
      echo "top: $top"

  - name: "Nameref indirection - ${!ref} on non-nameref"
    known_failure: true
    stdin: |
      target="value"
      ref=target
      echo "!ref (not nameref): ${!ref}"
      declare -n nref=target
      echo "!nref (nameref): ${!nref}"

  - name: "Nameref indirection with array nameref keys"
    known_failure: true
    stdin: |
      arr=(a b c)
      declare -n ref=arr
      echo "!ref[@]: ${!ref[@]}"

  - name: "Nameref indirection on nameref to array element"
    known_failure: true
    stdin: |
      arr=(x y z)
      declare -n ref='arr[1]'
      echo "!ref: ${!ref}"

  #
  # Arithmetic deeper
  #

  - name: "Nameref in (( )) comparison"
    stdin: |
      target=42
      declare -n ref=target
      (( ref == 42 )) && echo "equal"
      (( ref > 10 )) && echo "greater"
      (( ref < 100 )) && echo "less"

  - name: "Nameref in $((ref)) expression"
    stdin: |
      target=7
      declare -n ref=target
      echo "expr: $(( ref + 3 ))"
      echo "expr2: $(( ref * ref ))"

  - name: "Nameref array element in arithmetic for loop"
    known_failure: true
    stdin: |
      arr=(0)
      declare -n ref='arr[0]'
      for (( ref=1; ref<=5; ref++ )); do
          echo "ref=$ref arr[0]=${arr[0]}"
      done

  - name: "Nameref in arithmetic assignment chain"
    known_failure: true
    stdin: |
      a=0
      b=0
      declare -n refa=a
      declare -n refb=b
      (( refa = refb = 42 ))
      echo "a=$a b=$b"

  #
  # Execution contexts
  #

  - name: "Nameref in pipe components"
    known_failure: true
    stdin: |
      target="pipe_test"
      declare -n ref=target
      echo "$ref" | cat
      echo "$ref" | { read line; echo "pipe read: $line"; }

  - name: "Nameref in trap handler"
    known_failure: true
    stdin: |
      target="before_trap"
      declare -n ref=target
      trap 'echo "trap: ref=$ref target=$target"' EXIT
      ref="after_trap"

  - name: "Nameref in brace group"
    known_failure: true
    stdin: |
      target="brace"
      declare -n ref=target
      { ref="modified"; echo "inside: $target"; }
      echo "outside: $target"

  - name: "Nameref in while loop"
    known_failure: true
    stdin: |
      target=0
      declare -n ref=target
      while (( ref < 3 )); do
          echo "loop: ref=$ref"
          (( ref++ ))
      done
      echo "final target: $target"

  - name: "Nameref in until loop"
    known_failure: true
    stdin: |
      target=3
      declare -n ref=target
      until (( ref <= 0 )); do
          echo "until: ref=$ref"
          (( ref-- ))
      done
      echo "final target: $target"

  - name: "Nameref in here-doc"
    known_failure: true
    stdin: |
      target="heredoc_value"
      declare -n ref=target
      cat <<EOF
      ref is: $ref
      target is: $target
      EOF

  - name: "Nameref in condition of if statement"
    known_failure: true
    stdin: |
      target=5
      declare -n ref=target
      if (( ref > 3 )); then
          echo "greater"
      fi
      if [[ "$ref" == "5" ]]; then
          echo "string match"
      fi

  - name: "Nameref in background job"
    known_failure: true
    stdin: |
      target="bg_test"
      declare -n ref=target
      { echo "bg ref: $ref"; } &
      wait
      echo "main target: $target"

  #
  # Function scope deeper
  #

  - name: "Nameref in function - target name same as local in caller"
    known_failure: true
    stdin: |
      f() {
          local val="inner"
          g val
          echo "after g: val=$val"
      }
      g() {
          local -n ref=$1
          ref="modified"
      }
      f

  - name: "Nameref scope - same name different targets in nested calls"
    known_failure: true
    stdin: |
      a="A"
      b="B"
      outer() {
          local -n ref=a
          echo "outer before: $ref"
          inner
          echo "outer after: $ref"
      }
      inner() {
          local -n ref=b
          echo "inner: $ref"
          ref="B_modified"
      }
      outer
      echo "a=$a b=$b"

  - name: "Nameref in function - ref to caller local"
    known_failure: true
    stdin: |
      wrapper() {
          local secret="hidden"
          revealer secret
          echo "after: secret=$secret"
      }
      revealer() {
          local -n ref=$1
          echo "revealed: $ref"
          ref="exposed"
      }
      wrapper

  - name: "Nameref in function - local var shadows nameref target"
    known_failure: true
    stdin: |
      target="global_target"
      f() {
          local target="local_target"
          local -n ref=target
          echo "ref: $ref"
          ref="modified"
          echo "local target: $target"
      }
      f
      echo "global target: $target"

  - name: "Nameref - return value pattern via nameref"
    known_failure: true
    stdin: |
      compute() {
          local -n _result=$1
          _result=$(( 6 * 7 ))
      }
      answer=0
      compute answer
      echo "answer: $answer"

  - name: "Nameref - multiple out params via namerefs"
    known_failure: true
    stdin: |
      divide() {
          local -n _quotient=$1
          local -n _remainder=$2
          _quotient=$(( $3 / $4 ))
          _remainder=$(( $3 % $4 ))
      }
      q=0
      r=0
      divide q r 17 5
      echo "17/5 = $q remainder $r"

  - name: "Nameref with declare -g in function"
    known_failure: true
    stdin: |
      f() {
          declare -gn ref=global_target
          ref="from_function"
      }
      f
      echo "global_target: $global_target"
      declare -p ref 2>/dev/null && echo "ref exists globally"

  - name: "Nameref global pointing to local"
    known_failure: true
    stdin: |
      declare -n gref=local_var
      f() {
          local local_var="local_value"
          echo "gref in f: $gref"
      }
      f
      echo "gref outside: '${gref}'"

  #
  # Circular/chain deeper
  #

  - name: "Circular nameref - 4 node cycle"
    known_failure: true
    ignore_stderr: true
    stdin: |
      declare -n a=b
      declare -n b=c
      declare -n c=d
      declare -n d=a
      echo "a: '${a}'"
      echo "done"

  - name: "Chain where intermediate target is unset"
    known_failure: true
    stdin: |
      declare -n top=middle
      declare -n middle=bottom
      bottom="value"
      echo "top: $top"
      unset -n middle
      echo "top after: '${top}'"

  - name: "Nameref chain - declare -p at each level"
    stdin: |
      val="hello"
      declare -n b=val
      declare -n a=b
      declare -p a
      declare -p b
      declare -p val

  - name: "Nameref self-reference - write attempt"
    ignore_stderr: true
    stdin: |
      declare -n self=self
      self="value" 2>/dev/null
      echo "exit: $?"
      echo "done"

  - name: "Nameref self-reference - declare -p"
    known_failure: true
    ignore_stderr: true
    stdin: |
      declare -n self=self
      declare -p self

  - name: "Circular nameref - write attempt"
    known_failure: true
    ignore_stderr: true
    stdin: |
      declare -n x=y
      declare -n y=x
      x="value" 2>/dev/null
      echo "write exit: $?"
      echo "done"

  #
  # Special variables
  #

  - name: "Nameref to SECONDS"
    stdin: |
      SECONDS=0
      declare -n ref=SECONDS
      echo "type check: $(( ref >= 0 ? 1 : 0 ))"

  - name: "Nameref to FUNCNAME in function"
    known_failure: true
    stdin: |
      f() {
          local -n ref=FUNCNAME
          echo "funcname[0]: ${ref[0]}"
      }
      f

  - name: "Nameref to BASH_REMATCH"
    known_failure: true
    stdin: |
      [[ "hello123world" =~ ([0-9]+) ]]
      declare -n ref=BASH_REMATCH
      echo "match: ${ref[0]}"
      echo "group1: ${ref[1]}"

  - name: "Nameref to REPLY"
    known_failure: true
    stdin: |
      declare -n ref=REPLY
      read ref <<< "input_data"
      echo "REPLY: $REPLY"

  - name: "Nameref to OPTIND"
    known_failure: true
    stdin: |
      OPTIND=1
      declare -n ref=OPTIND
      echo "optind: $ref"
      ref=5
      echo "OPTIND: $OPTIND"

  #
  # Extended test edge cases
  #

  - name: "Nameref -v with nameref chain"
    known_failure: true
    stdin: |
      val="exists"
      declare -n mid=val
      declare -n top=mid
      [[ -v top ]] && echo "set" || echo "unset"
      unset val
      [[ -v top ]] && echo "set" || echo "unset"

  - name: "Nameref -R on regular variable"
    stdin: |
      regular="value"
      [[ -R regular ]] && echo "is nameref" || echo "not nameref"

  - name: "Nameref -R on unset variable"
    stdin: |
      [[ -R nonexistent ]] && echo "is nameref" || echo "not nameref"

  - name: "Nameref in test -z / -n"
    known_failure: true
    stdin: |
      target=""
      declare -n ref=target
      [[ -z "$ref" ]] && echo "empty: yes"
      [[ -n "$ref" ]] && echo "nonempty: yes" || echo "nonempty: no"
      target="data"
      [[ -z "$ref" ]] && echo "empty: yes" || echo "empty: no"
      [[ -n "$ref" ]] && echo "nonempty: yes"

  #
  # Compound assignment through nameref
  #

  - name: "Nameref compound array assignment to nonexistent"
    known_failure: true
    stdin: |
      declare -n ref=newarray
      ref=(alpha beta gamma)
      declare -p newarray

  - name: "Nameref compound assignment replaces"
    known_failure: true
    stdin: |
      target=(old1 old2 old3)
      declare -n ref=target
      ref=(new1 new2)
      declare -p target

  - name: "Nameref += integer append on integer var"
    known_failure: true
    stdin: |
      declare -i target=10
      declare -n ref=target
      ref+=5
      echo "target: $target"
      ref+=3
      echo "target: $target"

  #
  # Array operations deeper
  #

  - name: "Nameref to array - copy array"
    known_failure: true
    stdin: |
      src=(1 2 3)
      declare -n ref=src
      dst=("${ref[@]}")
      declare -p dst

  - name: "Nameref to array - declare -p shows array type"
    stdin: |
      declare -a arr=(x y z)
      declare -n ref=arr
      declare -p ref
      declare -p arr

  - name: "Nameref to assoc array - declare -p shows assoc type"
    stdin: |
      declare -A map=([a]=1)
      declare -n ref=map
      declare -p ref
      declare -p map

  - name: "Nameref to array - string operations on element 0"
    known_failure: true
    stdin: |
      arr=("hello world" "foo")
      declare -n ref=arr
      echo "upper: ${ref^^}"
      echo "length: ${#ref}"
      echo "sub: ${ref:0:5}"

  - name: "Nameref to array - append to specific index"
    known_failure: true
    stdin: |
      arr=(a b c)
      declare -n ref=arr
      ref[1]+="X"
      declare -p arr

  - name: "Nameref to associative array - delete key"
    known_failure: true
    stdin: |
      declare -A map=([x]=1 [y]=2 [z]=3)
      declare -n ref=map
      unset 'ref[y]'
      for k in "${!ref[@]}"; do echo "$k=${ref[$k]}"; done | sort

  - name: "Nameref to associative array - key existence"
    known_failure: true
    stdin: |
      declare -A map=([x]=1 [y]="")
      declare -n ref=map
      echo "x set: ${ref[x]+yes}"
      echo "y set: ${ref[y]+yes}"
      echo "z set: ${ref[z]+yes}"

  - name: "Nameref to array element - computed index"
    known_failure: true
    stdin: |
      arr=(10 20 30 40 50)
      i=3
      declare -n ref="arr[$i]"
      echo "ref: $ref"
      ref=99
      echo "arr[3]: ${arr[3]}"

  - name: "Nameref to array element - out of bounds"
    known_failure: true
    stdin: |
      arr=(a b c)
      declare -n ref='arr[10]'
      echo "ref: '${ref}'"
      ref="new"
      declare -p arr

  - name: "Nameref to assoc array - missing key then assign"
    known_failure: true
    stdin: |
      declare -A map=([x]=1)
      declare -n ref='map[missing]'
      echo "ref: '${ref}'"
      ref="new"
      echo "map[missing]: ${map[missing]}"

  - name: "Nameref to arr[@] - write attempt"
    known_failure: true
    ignore_stderr: true
    stdin: |
      arr=(a b c)
      declare -n ref='arr[@]'
      ref="new" 2>/dev/null
      echo "exit: $?"
      declare -p arr

  - name: "Nameref to arr[*] expansion"
    known_failure: true
    stdin: |
      arr=(a b c)
      declare -n ref='arr[*]'
      echo "ref: $ref"

  #
  # Variable attributes through ref
  #

  - name: "Declare -i through nameref adds integer to target"
    known_failure: true
    stdin: |
      declare -n ref=myvar
      declare -i ref
      ref="hello"
      echo "myvar: $myvar"
      ref=42
      echo "myvar: $myvar"
      declare -p myvar

  - name: "Declare -u through nameref adds uppercase to target"
    known_failure: true
    stdin: |
      declare -n ref=myvar
      declare -u ref
      ref="hello"
      echo "myvar: $myvar"
      declare -p myvar

  - name: "Declare -x through nameref exports target"
    known_failure: true
    stdin: |
      target="value"
      declare -n ref=target
      declare -x ref
      declare -p target

  #
  # Typeset compatibility
  #

  - name: "Typeset -n creates nameref"
    known_failure: true
    stdin: |
      target="typeset_val"
      typeset -n ref=target
      echo "ref: $ref"
      declare -p ref

  - name: "Typeset +n removes nameref attribute"
    known_failure: true
    stdin: |
      target="value"
      typeset -n ref=target
      echo "before: $ref"
      typeset +n ref
      echo "after: $ref"
      declare -p ref

  #
  # For-in loop retarget + mutation
  #

  - name: "For loop nameref - modify each target"
    known_failure: true
    stdin: |
      a=1
      b=2
      c=3
      declare -n ref
      for ref in a b c; do
          ref=$(( ref * 10 ))
      done
      echo "a=$a b=$b c=$c"

  #
  # Empty/whitespace values
  #

  - name: "Nameref to variable with empty string value"
    known_failure: true
    stdin: |
      target=""
      declare -n ref=target
      echo "ref: '$ref'"
      echo "set: ${ref+SET}"
      echo "default: ${ref:-DEFAULT}"
      echo "nocolon default: ${ref-NOCOLON}"

  - name: "Nameref to variable with newline value"
    known_failure: true
    stdin: |
      target=$'line1\nline2'
      declare -n ref=target
      echo "ref: $ref"
      echo "---"
      echo "$ref" | wc -l

  #
  # set -u edge cases
  #

  - name: "Nameref to set empty var with set -u"
    known_failure: true
    stdin: |
      set -u
      target=""
      declare -n ref=target
      echo "ref: '$ref'"
      echo "survived"

  - name: "Nameref with set -u and default expansion"
    known_failure: true
    stdin: |
      set -u
      declare -n ref=missing
      echo "default: ${ref:-safe}"
      echo "survived"

  - name: "Nameref with set -u - ${ref+x} does not error"
    known_failure: true
    stdin: |
      set -u
      declare -n ref=missing
      echo "set test: ${ref+SET}"
      echo "survived"

  #
  # Miscellaneous edge cases
  #

  - name: "Nameref multiple declare -n retargets"
    known_failure: true
    stdin: |
      a="A"
      b="B"
      declare -n ref=a
      echo "first: $ref"
      declare -n ref=b
      echo "second: $ref"

  - name: "Nameref in array subscript context"
    stdin: |
      idx=2
      declare -n ref=idx
      arr=(a b c d e)
      echo "arr[ref]: ${arr[$ref]}"

  - name: "Two namerefs to same target - unset via one access via other"
    known_failure: true
    stdin: |
      target="value"
      declare -n ref1=target
      declare -n ref2=target
      unset ref1
      echo "ref2: '${ref2}'"
      echo "target: '${target}'"

  - name: "Nameref with word splitting"
    known_failure: true
    stdin: |
      target="one two three"
      declare -n ref=target
      for word in $ref; do echo "word: $word"; done
      echo "---"
      for word in "$ref"; do echo "word: $word"; done

  - name: "Nameref to _ (underscore variable)"
    known_failure: true
    stdin: |
      _="test_value"
      declare -n ref=_
      echo "ref: $ref"

  - name: "Nameref preserves target type across reassignment"
    known_failure: true
    stdin: |
      declare -a arr=(x y)
      declare -n ref=arr
      ref=(a b c)
      declare -p arr

  - name: "Nameref with command in value is literal"
    known_failure: true
    stdin: |
      target='$(echo injected)'
      declare -n ref=target
      echo "ref: $ref"

  - name: "Nameref target created by assignment"
    known_failure: true
    stdin: |
      declare -n ref=brand_new_var
      ref="created"
      echo "brand_new_var: $brand_new_var"
      declare -p brand_new_var

  - name: "Nameref array index assignment"
    known_failure: true
    stdin: |
      declare -a arr=(a b c)
      declare -n ref=arr
      ref[0]="X"
      ref[2]="Z"
      declare -p arr

  - name: "Nameref assoc array assignment"
    known_failure: true
    stdin: |
      declare -A map
      declare -n ref=map
      ref[key1]="val1"
      ref[key2]="val2"
      for k in "${!map[@]}"; do echo "$k=${map[$k]}"; done | sort

  - name: "Nameref in source command"
    known_failure: true
    stdin: |
      tmp=$(mktemp)
      echo 'declare -n ref=target; ref="from_source"' > "$tmp"
      target="original"
      source "$tmp"
      echo "target: $target"
      rm "$tmp"

  - name: "Nameref to integer variable - arithmetic coercion"
    known_failure: true
    stdin: |
      declare -i num=10
      declare -n ref=num
      ref=20+5
      echo "num: $num"
      ref="3*4"
      echo "num after expr: $num"

  - name: "Nameref with declare giving value"
    known_failure: true
    stdin: |
      declare -n ref=target
      declare ref="value"
      echo "target: ${target}"
      declare -p target 2>/dev/null
      declare -p ref

  - name: "Read -r into nameref"
    known_failure: true
    stdin: |
      declare -n ref=result
      read -r ref <<< 'hello\tworld'
      echo "result: $result"

  - name: "Nameref in process substitution"
    known_failure: true
    stdin: |
      target="proc_sub"
      declare -n ref=target
      cat <(echo "$ref")

  - name: "Nameref in environment prefix assignment"
    known_failure: true
    stdin: |
      target="old"
      declare -n ref=target
      ref=new printenv target 2>/dev/null || echo "ref=new as prefix"
      echo "target after: $target"

  - name: "Local non-nameref shadows outer nameref"
    known_failure: true
    stdin: |
      f() {
          local -n ref=target
          g
          echo "f ref: $ref"
      }
      g() {
          local ref="plain"
          echo "g ref: $ref"
      }
      target="T"
      f
      echo "target: $target"

  - name: "Local -n referencing same-scope local"
    known_failure: true
    stdin: |
      f() {
          local target="local_val"
          local -n ref=target
          echo "ref: $ref"
          ref="changed"
          echo "target: $target"
      }
      f

  - name: "Nameref with array slice reassignment"
    known_failure: true
    stdin: |
      arr=(1 2 3)
      declare -n ref=arr
      echo "before: ${ref[@]}"
      ref=("${ref[@]:1}")
      echo "after: ${ref[@]}"

  - name: "Declare -p -n lists only namerefs"
    stdin: |
      declare -n r1=a
      declare -n r2=b
      regular="not_ref"
      declare -p -n 2>/dev/null | sort

  #
  # Integer attribute arithmetic evaluation on assignment
  # (Not nameref-specific but exercises same code path)
  #

  - name: "Integer variable evaluates arithmetic on assignment"
    known_failure: true
    stdin: |
      declare -i x
      x=20+5
      echo "x: $x"
      x="3*4"
      echo "x: $x"
      x="10/3"
      echo "x: $x"
      x="y=7, y+3"
      echo "x: $x"

  - name: "Integer variable with variable references in expression"
    known_failure: true
    stdin: |
      declare -i x
      y=10
      x=y+5
      echo "x: $x"
      x="y*2"
      echo "x: $x"

  - name: "Integer variable += with arithmetic"
    known_failure: true
    stdin: |
      declare -i x=10
      x+=5
      echo "x: $x"
      x+=3*2
      echo "x: $x"

  - name: "Integer variable through nameref evaluates arithmetic"
    known_failure: true
    stdin: |
      declare -i num=10
      declare -n ref=num
      ref=20+5
      echo "num: $num"
      ref="3*4"
      echo "num: $num"
      ref+=10
      echo "num: $num"

  #
  # :? error format (non-nameref cases too)
  #

  - name: "Expansion :? error with regular variable"
    ignore_stderr: true
    stdin: |
      unset missing
      ( echo "${missing:?custom error}" ) 2>/dev/null
      echo "exit: $?"

  - name: "Expansion :? with no message"
    ignore_stderr: true
    stdin: |
      unset missing
      ( echo "${missing:?}" ) 2>/dev/null
      echo "exit: $?"

  #
  # Self-reference edge cases beyond basic declaration
  #

  - name: "Nameref retarget to self after creation is rejected"
    known_failure: true
    ignore_stderr: true
    stdin: |
      target="val"
      declare -n ref=target
      echo "ref: $ref"
      declare -n ref=ref
      echo "exit: $?"
      echo "ref: $ref"
      declare -p ref

  - name: "Circular via retarget"
    known_failure: true
    ignore_stderr: true
    stdin: |
      declare -n a=b
      declare -n b=c
      c="value"
      echo "a: $a"
      # Now make it circular
      declare -n c=a
      echo "a after: '${a}'"
      echo "done"

  #
  # Additional edge cases from review
  #

  - name: "Self-reference by adding -n to existing var"
    known_failure: true
    ignore_stderr: true
    stdin: |
      x=x
      declare -n x
      echo "exit: $?"
      declare -p x
      echo "val: '${x}'"

  - name: "Array assignment through nameref-to-subscript errors"
    known_failure: true
    ignore_stderr: true
    stdin: |
      arr=(1 2 3)
      declare -n ref='arr[2]'
      ref=(a b c) 2>/dev/null
      echo "exit: $?"
      declare -p arr

  - name: "Integer array element via nameref with +="
    known_failure: true
    stdin: |
      declare -ia arr=(10 20 30)
      declare -n ref='arr[1]'
      ref+=5
      echo "arr[1]: ${arr[1]}"

  - name: "Nameref in select loop"
    known_failure: true
    stdin: |
      target=""
      declare -n ref=target
      echo "2" | {
        select ref in apple banana cherry; do
            echo "target=$target ref=$ref"
            break
        done
      }

  - name: "Nameref to LINENO"
    known_failure: true
    stdin: |
      declare -n ref=LINENO
      echo "ref: $ref"

  - name: "Nameref to BASH_SOURCE"
    known_failure: true
    stdin: |
      declare -n ref=BASH_SOURCE
      echo "ref0: '${ref[0]}'"

  - name: "Compound array append through subscripted nameref errors"
    known_failure: true
    ignore_stderr: true
    stdin: |
      arr=(a b c)
      declare -n ref='arr[0]'
      ref+=(x y z) 2>/dev/null
      echo "exit: $?"
      echo "arr: ${arr[@]}"

  - name: "Readonly propagates through 2-level nameref chain"
    known_failure: true
    ignore_stderr: true
    stdin: |
      target="original"
      declare -n middle=target
      declare -n top=middle
      readonly top
      declare -p target
      top="new" 2>/dev/null
      echo "exit: $?"
      middle="new" 2>/dev/null
      echo "exit: $?"
      target="new" 2>/dev/null
      echo "exit: $?"
      echo "target: $target"

  - name: "Export -n (remove export) through nameref"
    known_failure: true
    stdin: |
      target="exported_value"
      export target
      declare -n ref=target
      env | grep '^target=' | head -1
      export -n ref
      env | grep '^target=' || echo "target no longer exported"

  - name: "Declare -n with invalid target name containing spaces"
    known_failure: true
    ignore_stderr: true
    stdin: |
      declare -n ref='a b' 2>/dev/null
      echo "exit: $?"
      declare -n ref2='hello world' 2>/dev/null
      echo "exit: $?"
      echo "done"

  - name: "Declare -n with invalid target name special chars"
    known_failure: true
    ignore_stderr: true
    stdin: |
      declare -n ref='a+b' 2>/dev/null
      echo "exit: $?"
      declare -n ref2='a.b' 2>/dev/null
      echo "exit: $?"
      echo "done"

  - name: "Env var lookup through subscripted nameref"
    known_failure: true
    stdin: |
      arr=(zero one two three)
      declare -n ref='arr[2]'
      echo "ref: $ref"
      echo "ref length: ${#ref}"

  - name: "Subscripted nameref with [@] returns empty"
    known_failure: true
    stdin: |
      arr=(zero one two three)
      declare -n ref='arr[2]'
      echo "ref[@]: ${ref[@]}"
      echo "count: ${#ref[@]}"

  - name: "Subscripted nameref with explicit subscript returns empty"
    known_failure: true
    stdin: |
      arr=(zero one two three)
      declare -n ref='arr[2]'
      echo "ref[0]: '${ref[0]}'"
      echo "ref[1]: '${ref[1]}'"

  - name: "Subscripted nameref - member keys returns empty"
    known_failure: true
    stdin: |
      arr=(zero one two three)
      declare -n ref='arr[2]'
      echo "keys: '${!ref[@]}'"

  - name: "Let assignment through subscripted nameref"
    known_failure: true
    stdin: |
      arr=(10 20 30)
      declare -n ref='arr[1]'
      let ref=42
      echo "arr[1]: ${arr[1]}"
      let ref+=8
      echo "arr[1]: ${arr[1]}"

  - name: "Arithmetic (( )) with subscripted nameref"
    known_failure: true
    stdin: |
      arr=(100 200 300)
      declare -n ref='arr[0]'
      (( ref += 50 ))
      echo "arr[0]: ${arr[0]}"
      echo "expr: $(( ref * 2 ))"

  - name: "String length through subscripted nameref"
    known_failure: true
    stdin: |
      arr=("short" "a longer string here" "x")
      declare -n ref='arr[1]'
      echo "len: ${#ref}"

  - name: "Long nameref chain (8 levels - at bash max)"
    known_failure: true
    stdin: |
      final_target="deep_value"
      declare -n c8=final_target
      declare -n c7=c8
      declare -n c6=c7
      declare -n c5=c6
      declare -n c4=c5
      declare -n c3=c4
      declare -n c2=c3
      declare -n c1=c2
      echo "c1: $c1"
      c1="changed"
      echo "final_target: $final_target"

  - name: "Nameref chain exceeds max depth"
    known_failure: true
    ignore_stderr: true
    stdin: |
      final_target="deep_value"
      declare -n c9=final_target
      declare -n c8=c9
      declare -n c7=c8
      declare -n c6=c7
      declare -n c5=c6
      declare -n c4=c5
      declare -n c3=c4
      declare -n c2=c3
      declare -n c1=c2
      echo "c1: '$c1'"
      echo "done"

  - name: "Declare -x through subscripted nameref applies to base"
    known_failure: true
    stdin: |
      arr=(a b c)
      declare -n ref='arr[2]'
      declare -x ref 2>/dev/null
      declare -p arr 2>/dev/null | grep -c 'x' || echo "no export"

  - name: "Exported nameref passes literal value to child"
    stdin: |
      target="value"
      declare -nx myref=target
      # The nameref's literal value (the target name) is exported to child
      bash -c 'echo "myref: $myref"'
      # The target itself needs separate export
      export target
      bash -c 'echo "target: $target"'

  - name: "Subscripted nameref with set -u when element is set"
    known_failure: true
    stdin: |
      set -u
      arr=(a b c)
      declare -n ref='arr[1]'
      echo "ref: $ref"

  - name: "Subscripted nameref with set -u when element is unset"
    known_failure: true
    ignore_stderr: true
    stdin: |
      set -u
      arr=(a b c)
      declare -n ref='arr[5]'
      echo "$ref"
      echo "should not print"

  - name: "Nameref with := default creates target through nameref"
    known_failure: true
    stdin: |
      declare -n ref=new_var
      echo "before: '${new_var:-}'"
      result="${ref:=hello}"
      echo "result: $result"
      echo "new_var: $new_var"

  - name: "Nameref with := default when target exists but is empty"
    known_failure: true
    stdin: |
      target=""
      declare -n ref=target
      result="${ref:=fallback}"
      echo "result: $result"
      echo "target: $target"

  - name: "Readonly nameref in for-in loop fails"
    known_failure: true
    ignore_stderr: true
    stdin: |
      declare -n ref=var1
      readonly ref
      for ref in a b c; do
          echo "should not print: $ref"
      done
      echo "exit: $?"
      echo "done"

  - name: "Circular nameref with set -e does not abort script"
    known_failure: true
    ignore_stderr: true
    stdin: |
      set -e
      declare -n a=b
      declare -n b=a
      echo "val: '${a}'"
      echo "script continues"

  - name: "Nameref to unset variable with set -eu errors and exits"
    known_failure: true
    ignore_stderr: true
    stdin: |
      set -eu
      declare -n ref=nonexistent
      echo "$ref"
      echo "should not print"

  - name: "Export through subscripted nameref is rejected by bash"
    # In bash, `export ref` where ref→arr[1] passes the literal "arr[1]" to
    # export, which rejects it as an invalid identifier. Brush instead resolves
    # the nameref to the base variable and exports it.
    ignore_stderr: true
    stdin: |
      arr=(a b c)
      declare -n ref='arr[1]'
      export ref 2>/dev/null
      echo "exit: $?"
      declare -p arr | grep -o 'x' | head -1 || echo "no export"

  - name: "Readonly through subscripted nameref makes base readonly"
    # In bash, `readonly ref` where ref→arr[1] does NOT make the base array
    # readonly. Brush currently resolves the nameref to the base variable and
    # applies readonly there. The fix would be to have resolve_nameref_for_declaration
    # in declare.rs handle subscripted nameref targets specially.
    ignore_stderr: true
    stdin: |
      arr=(a b c)
      declare -n ref='arr[1]'
      readonly ref
      declare -p arr
      arr[0]="new" 2>/dev/null
      echo "exit: $?"

  - name: "Declare -p on subscripted nameref shows nameref itself"
    known_failure: true
    stdin: |
      arr=(a b c)
      declare -n ref='arr[1]'
      declare -p ref
      echo "ref value: $ref"