1*23f24377SWarner Losh 2*23f24377SWarner Losh### BEGIN{foo=6;print foo/2}: 3*23f24377SWarner Losh3 4*23f24377SWarner Losh 5*23f24377SWarner Losh### BEGIN{foo=10;foo/=2;print foo}: 6*23f24377SWarner Losh5 7*23f24377SWarner Losh 8*23f24377SWarner Losh### /=/ {print $0}: 9*23f24377SWarner Loshfoo=bar 10*23f24377SWarner Loshfoo==bar 11*23f24377SWarner Loshfoo+=bar 12*23f24377SWarner Loshfoo-=bar 13*23f24377SWarner Loshfoo*=bar 14*23f24377SWarner Loshfoo/=bar 15*23f24377SWarner Loshfoo^=bar 16*23f24377SWarner Loshfoo%=bar 17*23f24377SWarner Loshfoo!=bar 18*23f24377SWarner Loshfoo<=bar 19*23f24377SWarner Loshfoo>=bar 20*23f24377SWarner Loshfoo=bar=fribble 21*23f24377SWarner Losh=foo=bar 22*23f24377SWarner Losh 23*23f24377SWarner Losh### /==/ {print $0}: 24*23f24377SWarner Loshfoo==bar 25*23f24377SWarner Losh 26*23f24377SWarner Losh### /+=/ {print $0}: 27*23f24377SWarner Losh../a.out: illegal primary in regular expression += at = 28*23f24377SWarner Losh source line number 1 29*23f24377SWarner Losh context is 30*23f24377SWarner Losh >>> /+=/ <<< 31*23f24377SWarner Losh 32*23f24377SWarner Losh### /*=/ {print $0}: 33*23f24377SWarner Losh../a.out: illegal primary in regular expression *= at = 34*23f24377SWarner Losh source line number 1 35*23f24377SWarner Losh context is 36*23f24377SWarner Losh >>> /*=/ <<< 37*23f24377SWarner Losh 38*23f24377SWarner Losh### /-=/ {print $0}: 39*23f24377SWarner Loshfoo-=bar 40*23f24377SWarner Losh 41*23f24377SWarner Losh### //=/ {print $0}: 42*23f24377SWarner Losh../a.out: empty regular expression 43*23f24377SWarner Losh source line number 1 44*23f24377SWarner Losh context is 45*23f24377SWarner Losh >>> // <<< 46*23f24377SWarner Losh 47*23f24377SWarner Losh### /%=/ {print $0}: 48*23f24377SWarner Loshfoo%=bar 49*23f24377SWarner Losh 50*23f24377SWarner Losh### /^=/ {print $0}: 51*23f24377SWarner Losh=foo=bar 52*23f24377SWarner Losh 53*23f24377SWarner Losh### /\/=/ {print $0}: 54*23f24377SWarner Loshfoo/=bar 55*23f24377SWarner Losh 56*23f24377SWarner Losh### /!=/ {print $0}: 57*23f24377SWarner Loshfoo!=bar 58*23f24377SWarner Losh 59*23f24377SWarner Losh### /<=/ {print $0}: 60*23f24377SWarner Loshfoo<=bar 61*23f24377SWarner Losh 62*23f24377SWarner Losh### />=/ {print $0}: 63*23f24377SWarner Loshfoo>=bar 64*23f24377SWarner Losh 65*23f24377SWarner Losh### !/=/ {print $0}: 66*23f24377SWarner Loshfoo+bar 67*23f24377SWarner Loshfoo bar 68*23f24377SWarner Loshfoo/bar 69*23f24377SWarner Losh 70*23f24377SWarner Losh 71*23f24377SWarner Losh### !/==/ {print $0}: 72*23f24377SWarner Loshfoo=bar 73*23f24377SWarner Loshfoo+bar 74*23f24377SWarner Loshfoo+=bar 75*23f24377SWarner Loshfoo-=bar 76*23f24377SWarner Loshfoo*=bar 77*23f24377SWarner Loshfoo/=bar 78*23f24377SWarner Loshfoo^=bar 79*23f24377SWarner Loshfoo%=bar 80*23f24377SWarner Loshfoo!=bar 81*23f24377SWarner Loshfoo<=bar 82*23f24377SWarner Loshfoo>=bar 83*23f24377SWarner Loshfoo bar 84*23f24377SWarner Loshfoo/bar 85*23f24377SWarner Loshfoo=bar=fribble 86*23f24377SWarner Losh=foo=bar 87*23f24377SWarner Losh 88*23f24377SWarner Losh 89*23f24377SWarner Losh### !/+=/ {print $0}: 90*23f24377SWarner Losh../a.out: illegal primary in regular expression += at = 91*23f24377SWarner Losh source line number 1 92*23f24377SWarner Losh context is 93*23f24377SWarner Losh >>> !/+=/ <<< 94*23f24377SWarner Losh 95*23f24377SWarner Losh### !/*=/ {print $0}: 96*23f24377SWarner Losh../a.out: illegal primary in regular expression *= at = 97*23f24377SWarner Losh source line number 1 98*23f24377SWarner Losh context is 99*23f24377SWarner Losh >>> !/*=/ <<< 100*23f24377SWarner Losh 101*23f24377SWarner Losh### !/-=/ {print $0}: 102*23f24377SWarner Loshfoo=bar 103*23f24377SWarner Loshfoo==bar 104*23f24377SWarner Loshfoo+bar 105*23f24377SWarner Loshfoo+=bar 106*23f24377SWarner Loshfoo*=bar 107*23f24377SWarner Loshfoo/=bar 108*23f24377SWarner Loshfoo^=bar 109*23f24377SWarner Loshfoo%=bar 110*23f24377SWarner Loshfoo!=bar 111*23f24377SWarner Loshfoo<=bar 112*23f24377SWarner Loshfoo>=bar 113*23f24377SWarner Loshfoo bar 114*23f24377SWarner Loshfoo/bar 115*23f24377SWarner Loshfoo=bar=fribble 116*23f24377SWarner Losh=foo=bar 117*23f24377SWarner Losh 118*23f24377SWarner Losh 119*23f24377SWarner Losh### !//=/ {print $0}: 120*23f24377SWarner Losh../a.out: empty regular expression 121*23f24377SWarner Losh source line number 1 122*23f24377SWarner Losh context is 123*23f24377SWarner Losh >>> !// <<< 124*23f24377SWarner Losh 125*23f24377SWarner Losh### !/%=/ {print $0}: 126*23f24377SWarner Loshfoo=bar 127*23f24377SWarner Loshfoo==bar 128*23f24377SWarner Loshfoo+bar 129*23f24377SWarner Loshfoo+=bar 130*23f24377SWarner Loshfoo-=bar 131*23f24377SWarner Loshfoo*=bar 132*23f24377SWarner Loshfoo/=bar 133*23f24377SWarner Loshfoo^=bar 134*23f24377SWarner Loshfoo!=bar 135*23f24377SWarner Loshfoo<=bar 136*23f24377SWarner Loshfoo>=bar 137*23f24377SWarner Loshfoo bar 138*23f24377SWarner Loshfoo/bar 139*23f24377SWarner Loshfoo=bar=fribble 140*23f24377SWarner Losh=foo=bar 141*23f24377SWarner Losh 142*23f24377SWarner Losh 143*23f24377SWarner Losh### !/^=/ {print $0}: 144*23f24377SWarner Loshfoo=bar 145*23f24377SWarner Loshfoo==bar 146*23f24377SWarner Loshfoo+bar 147*23f24377SWarner Loshfoo+=bar 148*23f24377SWarner Loshfoo-=bar 149*23f24377SWarner Loshfoo*=bar 150*23f24377SWarner Loshfoo/=bar 151*23f24377SWarner Loshfoo^=bar 152*23f24377SWarner Loshfoo%=bar 153*23f24377SWarner Loshfoo!=bar 154*23f24377SWarner Loshfoo<=bar 155*23f24377SWarner Loshfoo>=bar 156*23f24377SWarner Loshfoo bar 157*23f24377SWarner Loshfoo/bar 158*23f24377SWarner Loshfoo=bar=fribble 159*23f24377SWarner Losh 160*23f24377SWarner Losh 161*23f24377SWarner Losh### !/\/=/ {print $0}: 162*23f24377SWarner Loshfoo=bar 163*23f24377SWarner Loshfoo==bar 164*23f24377SWarner Loshfoo+bar 165*23f24377SWarner Loshfoo+=bar 166*23f24377SWarner Loshfoo-=bar 167*23f24377SWarner Loshfoo*=bar 168*23f24377SWarner Loshfoo^=bar 169*23f24377SWarner Loshfoo%=bar 170*23f24377SWarner Loshfoo!=bar 171*23f24377SWarner Loshfoo<=bar 172*23f24377SWarner Loshfoo>=bar 173*23f24377SWarner Loshfoo bar 174*23f24377SWarner Loshfoo/bar 175*23f24377SWarner Loshfoo=bar=fribble 176*23f24377SWarner Losh=foo=bar 177*23f24377SWarner Losh 178*23f24377SWarner Losh 179*23f24377SWarner Losh### !/!=/ {print $0}: 180*23f24377SWarner Loshfoo=bar 181*23f24377SWarner Loshfoo==bar 182*23f24377SWarner Loshfoo+bar 183*23f24377SWarner Loshfoo+=bar 184*23f24377SWarner Loshfoo-=bar 185*23f24377SWarner Loshfoo*=bar 186*23f24377SWarner Loshfoo/=bar 187*23f24377SWarner Loshfoo^=bar 188*23f24377SWarner Loshfoo%=bar 189*23f24377SWarner Loshfoo<=bar 190*23f24377SWarner Loshfoo>=bar 191*23f24377SWarner Loshfoo bar 192*23f24377SWarner Loshfoo/bar 193*23f24377SWarner Loshfoo=bar=fribble 194*23f24377SWarner Losh=foo=bar 195*23f24377SWarner Losh 196*23f24377SWarner Losh 197*23f24377SWarner Losh### !/<=/ {print $0}: 198*23f24377SWarner Loshfoo=bar 199*23f24377SWarner Loshfoo==bar 200*23f24377SWarner Loshfoo+bar 201*23f24377SWarner Loshfoo+=bar 202*23f24377SWarner Loshfoo-=bar 203*23f24377SWarner Loshfoo*=bar 204*23f24377SWarner Loshfoo/=bar 205*23f24377SWarner Loshfoo^=bar 206*23f24377SWarner Loshfoo%=bar 207*23f24377SWarner Loshfoo!=bar 208*23f24377SWarner Loshfoo>=bar 209*23f24377SWarner Loshfoo bar 210*23f24377SWarner Loshfoo/bar 211*23f24377SWarner Loshfoo=bar=fribble 212*23f24377SWarner Losh=foo=bar 213*23f24377SWarner Losh 214*23f24377SWarner Losh 215*23f24377SWarner Losh### !/>=/ {print $0}: 216*23f24377SWarner Loshfoo=bar 217*23f24377SWarner Loshfoo==bar 218*23f24377SWarner Loshfoo+bar 219*23f24377SWarner Loshfoo+=bar 220*23f24377SWarner Loshfoo-=bar 221*23f24377SWarner Loshfoo*=bar 222*23f24377SWarner Loshfoo/=bar 223*23f24377SWarner Loshfoo^=bar 224*23f24377SWarner Loshfoo%=bar 225*23f24377SWarner Loshfoo!=bar 226*23f24377SWarner Loshfoo<=bar 227*23f24377SWarner Loshfoo bar 228*23f24377SWarner Loshfoo/bar 229*23f24377SWarner Loshfoo=bar=fribble 230*23f24377SWarner Losh=foo=bar 231*23f24377SWarner Losh 232*23f24377SWarner Losh 233*23f24377SWarner Losh### $0~/=/ {print $0}: 234*23f24377SWarner Loshfoo=bar 235*23f24377SWarner Loshfoo==bar 236*23f24377SWarner Loshfoo+=bar 237*23f24377SWarner Loshfoo-=bar 238*23f24377SWarner Loshfoo*=bar 239*23f24377SWarner Loshfoo/=bar 240*23f24377SWarner Loshfoo^=bar 241*23f24377SWarner Loshfoo%=bar 242*23f24377SWarner Loshfoo!=bar 243*23f24377SWarner Loshfoo<=bar 244*23f24377SWarner Loshfoo>=bar 245*23f24377SWarner Loshfoo=bar=fribble 246*23f24377SWarner Losh=foo=bar 247*23f24377SWarner Losh 248*23f24377SWarner Losh### $0~/==/ {print $0}: 249*23f24377SWarner Loshfoo==bar 250*23f24377SWarner Losh 251*23f24377SWarner Losh### $0~/+=/ {print $0}: 252*23f24377SWarner Losh../a.out: illegal primary in regular expression += at = 253*23f24377SWarner Losh source line number 1 254*23f24377SWarner Losh context is 255*23f24377SWarner Losh >>> $0~/+=/ <<< 256*23f24377SWarner Losh 257*23f24377SWarner Losh### $0~/*=/ {print $0}: 258*23f24377SWarner Losh../a.out: illegal primary in regular expression *= at = 259*23f24377SWarner Losh source line number 1 260*23f24377SWarner Losh context is 261*23f24377SWarner Losh >>> $0~/*=/ <<< 262*23f24377SWarner Losh 263*23f24377SWarner Losh### $0~/-=/ {print $0}: 264*23f24377SWarner Loshfoo-=bar 265*23f24377SWarner Losh 266*23f24377SWarner Losh### $0~//=/ {print $0}: 267*23f24377SWarner Losh../a.out: empty regular expression 268*23f24377SWarner Losh source line number 1 269*23f24377SWarner Losh context is 270*23f24377SWarner Losh >>> $0~// <<< 271*23f24377SWarner Losh 272*23f24377SWarner Losh### $0~/%=/ {print $0}: 273*23f24377SWarner Loshfoo%=bar 274*23f24377SWarner Losh 275*23f24377SWarner Losh### $0~/^=/ {print $0}: 276*23f24377SWarner Losh=foo=bar 277*23f24377SWarner Losh 278*23f24377SWarner Losh### $0~/\/=/ {print $0}: 279*23f24377SWarner Loshfoo/=bar 280*23f24377SWarner Losh 281*23f24377SWarner Losh### $0~/!=/ {print $0}: 282*23f24377SWarner Loshfoo!=bar 283*23f24377SWarner Losh 284*23f24377SWarner Losh### $0~/<=/ {print $0}: 285*23f24377SWarner Loshfoo<=bar 286*23f24377SWarner Losh 287*23f24377SWarner Losh### $0~/>=/ {print $0}: 288*23f24377SWarner Loshfoo>=bar 289*23f24377SWarner Losh 290*23f24377SWarner Losh### $0!~/=/ {print $0}: 291*23f24377SWarner Loshfoo+bar 292*23f24377SWarner Loshfoo bar 293*23f24377SWarner Loshfoo/bar 294*23f24377SWarner Losh 295*23f24377SWarner Losh 296*23f24377SWarner Losh### $0!~/==/ {print $0}: 297*23f24377SWarner Loshfoo=bar 298*23f24377SWarner Loshfoo+bar 299*23f24377SWarner Loshfoo+=bar 300*23f24377SWarner Loshfoo-=bar 301*23f24377SWarner Loshfoo*=bar 302*23f24377SWarner Loshfoo/=bar 303*23f24377SWarner Loshfoo^=bar 304*23f24377SWarner Loshfoo%=bar 305*23f24377SWarner Loshfoo!=bar 306*23f24377SWarner Loshfoo<=bar 307*23f24377SWarner Loshfoo>=bar 308*23f24377SWarner Loshfoo bar 309*23f24377SWarner Loshfoo/bar 310*23f24377SWarner Loshfoo=bar=fribble 311*23f24377SWarner Losh=foo=bar 312*23f24377SWarner Losh 313*23f24377SWarner Losh 314*23f24377SWarner Losh### $0!~/+=/ {print $0}: 315*23f24377SWarner Losh../a.out: illegal primary in regular expression += at = 316*23f24377SWarner Losh source line number 1 317*23f24377SWarner Losh context is 318*23f24377SWarner Losh >>> $0!~/+=/ <<< 319*23f24377SWarner Losh 320*23f24377SWarner Losh### $0!~/*=/ {print $0}: 321*23f24377SWarner Losh../a.out: illegal primary in regular expression *= at = 322*23f24377SWarner Losh source line number 1 323*23f24377SWarner Losh context is 324*23f24377SWarner Losh >>> $0!~/*=/ <<< 325*23f24377SWarner Losh 326*23f24377SWarner Losh### $0!~/-=/ {print $0}: 327*23f24377SWarner Loshfoo=bar 328*23f24377SWarner Loshfoo==bar 329*23f24377SWarner Loshfoo+bar 330*23f24377SWarner Loshfoo+=bar 331*23f24377SWarner Loshfoo*=bar 332*23f24377SWarner Loshfoo/=bar 333*23f24377SWarner Loshfoo^=bar 334*23f24377SWarner Loshfoo%=bar 335*23f24377SWarner Loshfoo!=bar 336*23f24377SWarner Loshfoo<=bar 337*23f24377SWarner Loshfoo>=bar 338*23f24377SWarner Loshfoo bar 339*23f24377SWarner Loshfoo/bar 340*23f24377SWarner Loshfoo=bar=fribble 341*23f24377SWarner Losh=foo=bar 342*23f24377SWarner Losh 343*23f24377SWarner Losh 344*23f24377SWarner Losh### $0!~//=/ {print $0}: 345*23f24377SWarner Losh../a.out: empty regular expression 346*23f24377SWarner Losh source line number 1 347*23f24377SWarner Losh context is 348*23f24377SWarner Losh >>> $0!~// <<< 349*23f24377SWarner Losh 350*23f24377SWarner Losh### $0!~/%=/ {print $0}: 351*23f24377SWarner Loshfoo=bar 352*23f24377SWarner Loshfoo==bar 353*23f24377SWarner Loshfoo+bar 354*23f24377SWarner Loshfoo+=bar 355*23f24377SWarner Loshfoo-=bar 356*23f24377SWarner Loshfoo*=bar 357*23f24377SWarner Loshfoo/=bar 358*23f24377SWarner Loshfoo^=bar 359*23f24377SWarner Loshfoo!=bar 360*23f24377SWarner Loshfoo<=bar 361*23f24377SWarner Loshfoo>=bar 362*23f24377SWarner Loshfoo bar 363*23f24377SWarner Loshfoo/bar 364*23f24377SWarner Loshfoo=bar=fribble 365*23f24377SWarner Losh=foo=bar 366*23f24377SWarner Losh 367*23f24377SWarner Losh 368*23f24377SWarner Losh### $0!~/^=/ {print $0}: 369*23f24377SWarner Loshfoo=bar 370*23f24377SWarner Loshfoo==bar 371*23f24377SWarner Loshfoo+bar 372*23f24377SWarner Loshfoo+=bar 373*23f24377SWarner Loshfoo-=bar 374*23f24377SWarner Loshfoo*=bar 375*23f24377SWarner Loshfoo/=bar 376*23f24377SWarner Loshfoo^=bar 377*23f24377SWarner Loshfoo%=bar 378*23f24377SWarner Loshfoo!=bar 379*23f24377SWarner Loshfoo<=bar 380*23f24377SWarner Loshfoo>=bar 381*23f24377SWarner Loshfoo bar 382*23f24377SWarner Loshfoo/bar 383*23f24377SWarner Loshfoo=bar=fribble 384*23f24377SWarner Losh 385*23f24377SWarner Losh 386*23f24377SWarner Losh### $0!~/\/=/ {print $0}: 387*23f24377SWarner Loshfoo=bar 388*23f24377SWarner Loshfoo==bar 389*23f24377SWarner Loshfoo+bar 390*23f24377SWarner Loshfoo+=bar 391*23f24377SWarner Loshfoo-=bar 392*23f24377SWarner Loshfoo*=bar 393*23f24377SWarner Loshfoo^=bar 394*23f24377SWarner Loshfoo%=bar 395*23f24377SWarner Loshfoo!=bar 396*23f24377SWarner Loshfoo<=bar 397*23f24377SWarner Loshfoo>=bar 398*23f24377SWarner Loshfoo bar 399*23f24377SWarner Loshfoo/bar 400*23f24377SWarner Loshfoo=bar=fribble 401*23f24377SWarner Losh=foo=bar 402*23f24377SWarner Losh 403*23f24377SWarner Losh 404*23f24377SWarner Losh### $0!~/!=/ {print $0}: 405*23f24377SWarner Loshfoo=bar 406*23f24377SWarner Loshfoo==bar 407*23f24377SWarner Loshfoo+bar 408*23f24377SWarner Loshfoo+=bar 409*23f24377SWarner Loshfoo-=bar 410*23f24377SWarner Loshfoo*=bar 411*23f24377SWarner Loshfoo/=bar 412*23f24377SWarner Loshfoo^=bar 413*23f24377SWarner Loshfoo%=bar 414*23f24377SWarner Loshfoo<=bar 415*23f24377SWarner Loshfoo>=bar 416*23f24377SWarner Loshfoo bar 417*23f24377SWarner Loshfoo/bar 418*23f24377SWarner Loshfoo=bar=fribble 419*23f24377SWarner Losh=foo=bar 420*23f24377SWarner Losh 421*23f24377SWarner Losh 422*23f24377SWarner Losh### $0!~/<=/ {print $0}: 423*23f24377SWarner Loshfoo=bar 424*23f24377SWarner Loshfoo==bar 425*23f24377SWarner Loshfoo+bar 426*23f24377SWarner Loshfoo+=bar 427*23f24377SWarner Loshfoo-=bar 428*23f24377SWarner Loshfoo*=bar 429*23f24377SWarner Loshfoo/=bar 430*23f24377SWarner Loshfoo^=bar 431*23f24377SWarner Loshfoo%=bar 432*23f24377SWarner Loshfoo!=bar 433*23f24377SWarner Loshfoo>=bar 434*23f24377SWarner Loshfoo bar 435*23f24377SWarner Loshfoo/bar 436*23f24377SWarner Loshfoo=bar=fribble 437*23f24377SWarner Losh=foo=bar 438*23f24377SWarner Losh 439*23f24377SWarner Losh 440*23f24377SWarner Losh### $0!~/>=/ {print $0}: 441*23f24377SWarner Loshfoo=bar 442*23f24377SWarner Loshfoo==bar 443*23f24377SWarner Loshfoo+bar 444*23f24377SWarner Loshfoo+=bar 445*23f24377SWarner Loshfoo-=bar 446*23f24377SWarner Loshfoo*=bar 447*23f24377SWarner Loshfoo/=bar 448*23f24377SWarner Loshfoo^=bar 449*23f24377SWarner Loshfoo%=bar 450*23f24377SWarner Loshfoo!=bar 451*23f24377SWarner Loshfoo<=bar 452*23f24377SWarner Loshfoo bar 453*23f24377SWarner Loshfoo/bar 454*23f24377SWarner Loshfoo=bar=fribble 455*23f24377SWarner Losh=foo=bar 456*23f24377SWarner Losh 457*23f24377SWarner Losh 458*23f24377SWarner Losh### {if(match($0,/=/))print $0}: 459*23f24377SWarner Loshfoo=bar 460*23f24377SWarner Loshfoo==bar 461*23f24377SWarner Loshfoo+=bar 462*23f24377SWarner Loshfoo-=bar 463*23f24377SWarner Loshfoo*=bar 464*23f24377SWarner Loshfoo/=bar 465*23f24377SWarner Loshfoo^=bar 466*23f24377SWarner Loshfoo%=bar 467*23f24377SWarner Loshfoo!=bar 468*23f24377SWarner Loshfoo<=bar 469*23f24377SWarner Loshfoo>=bar 470*23f24377SWarner Loshfoo=bar=fribble 471*23f24377SWarner Losh=foo=bar 472*23f24377SWarner Losh 473*23f24377SWarner Losh### {if(match($0,/=/))print $0}: 474*23f24377SWarner Loshfoo=bar 475*23f24377SWarner Loshfoo==bar 476*23f24377SWarner Loshfoo+=bar 477*23f24377SWarner Loshfoo-=bar 478*23f24377SWarner Loshfoo*=bar 479*23f24377SWarner Loshfoo/=bar 480*23f24377SWarner Loshfoo^=bar 481*23f24377SWarner Loshfoo%=bar 482*23f24377SWarner Loshfoo!=bar 483*23f24377SWarner Loshfoo<=bar 484*23f24377SWarner Loshfoo>=bar 485*23f24377SWarner Loshfoo=bar=fribble 486*23f24377SWarner Losh=foo=bar 487*23f24377SWarner Losh 488*23f24377SWarner Losh### {if(match($0,/==/))print $0}: 489*23f24377SWarner Loshfoo==bar 490*23f24377SWarner Losh 491*23f24377SWarner Losh### {if(match($0,/+=/))print $0}: 492*23f24377SWarner Losh../a.out: illegal primary in regular expression += at = 493*23f24377SWarner Losh source line number 1 494*23f24377SWarner Losh context is 495*23f24377SWarner Losh >>> {if(match($0,/+=/) <<< 496*23f24377SWarner Losh 497*23f24377SWarner Losh### {if(match($0,/*=/))print $0}: 498*23f24377SWarner Losh../a.out: illegal primary in regular expression *= at = 499*23f24377SWarner Losh source line number 1 500*23f24377SWarner Losh context is 501*23f24377SWarner Losh >>> {if(match($0,/*=/) <<< 502*23f24377SWarner Losh 503*23f24377SWarner Losh### {if(match($0,/-=/))print $0}: 504*23f24377SWarner Loshfoo-=bar 505*23f24377SWarner Losh 506*23f24377SWarner Losh### {if(match($0,//=/))print $0}: 507*23f24377SWarner Losh../a.out: empty regular expression 508*23f24377SWarner Losh source line number 1 509*23f24377SWarner Losh context is 510*23f24377SWarner Losh >>> {if(match($0,//= <<< /))print $0} 511*23f24377SWarner Losh 512*23f24377SWarner Losh### {if(match($0,/%=/))print $0}: 513*23f24377SWarner Loshfoo%=bar 514*23f24377SWarner Losh 515*23f24377SWarner Losh### {if(match($0,/^=/))print $0}: 516*23f24377SWarner Losh=foo=bar 517*23f24377SWarner Losh 518*23f24377SWarner Losh### {if(match($0,/\/=/))print $0}: 519*23f24377SWarner Loshfoo/=bar 520*23f24377SWarner Losh 521*23f24377SWarner Losh### {if(match($0,/!=/))print $0}: 522*23f24377SWarner Loshfoo!=bar 523*23f24377SWarner Losh 524*23f24377SWarner Losh### {if(match($0,/<=/))print $0}: 525*23f24377SWarner Loshfoo<=bar 526*23f24377SWarner Losh 527*23f24377SWarner Losh### {if(match($0,/>=/))print $0}: 528*23f24377SWarner Loshfoo>=bar 529*23f24377SWarner Losh 530*23f24377SWarner Losh### {if(!match($0,/=/))print $0}: 531*23f24377SWarner Loshfoo+bar 532*23f24377SWarner Loshfoo bar 533*23f24377SWarner Loshfoo/bar 534*23f24377SWarner Losh 535*23f24377SWarner Losh 536*23f24377SWarner Losh### {if(!match($0,/==/))print $0}: 537*23f24377SWarner Loshfoo=bar 538*23f24377SWarner Loshfoo+bar 539*23f24377SWarner Loshfoo+=bar 540*23f24377SWarner Loshfoo-=bar 541*23f24377SWarner Loshfoo*=bar 542*23f24377SWarner Loshfoo/=bar 543*23f24377SWarner Loshfoo^=bar 544*23f24377SWarner Loshfoo%=bar 545*23f24377SWarner Loshfoo!=bar 546*23f24377SWarner Loshfoo<=bar 547*23f24377SWarner Loshfoo>=bar 548*23f24377SWarner Loshfoo bar 549*23f24377SWarner Loshfoo/bar 550*23f24377SWarner Loshfoo=bar=fribble 551*23f24377SWarner Losh=foo=bar 552*23f24377SWarner Losh 553*23f24377SWarner Losh 554*23f24377SWarner Losh### {if(!match($0,/+=/))print $0}: 555*23f24377SWarner Losh../a.out: illegal primary in regular expression += at = 556*23f24377SWarner Losh source line number 1 557*23f24377SWarner Losh context is 558*23f24377SWarner Losh >>> {if(!match($0,/+=/) <<< 559*23f24377SWarner Losh 560*23f24377SWarner Losh### {if(!match($0,/*=/))print $0}: 561*23f24377SWarner Losh../a.out: illegal primary in regular expression *= at = 562*23f24377SWarner Losh source line number 1 563*23f24377SWarner Losh context is 564*23f24377SWarner Losh >>> {if(!match($0,/*=/) <<< 565*23f24377SWarner Losh 566*23f24377SWarner Losh### {if(!match($0,/-=/))print $0}: 567*23f24377SWarner Loshfoo=bar 568*23f24377SWarner Loshfoo==bar 569*23f24377SWarner Loshfoo+bar 570*23f24377SWarner Loshfoo+=bar 571*23f24377SWarner Loshfoo*=bar 572*23f24377SWarner Loshfoo/=bar 573*23f24377SWarner Loshfoo^=bar 574*23f24377SWarner Loshfoo%=bar 575*23f24377SWarner Loshfoo!=bar 576*23f24377SWarner Loshfoo<=bar 577*23f24377SWarner Loshfoo>=bar 578*23f24377SWarner Loshfoo bar 579*23f24377SWarner Loshfoo/bar 580*23f24377SWarner Loshfoo=bar=fribble 581*23f24377SWarner Losh=foo=bar 582*23f24377SWarner Losh 583*23f24377SWarner Losh 584*23f24377SWarner Losh### {if(!match($0,//=/))print $0}: 585*23f24377SWarner Losh../a.out: empty regular expression 586*23f24377SWarner Losh source line number 1 587*23f24377SWarner Losh context is 588*23f24377SWarner Losh >>> {if(!match($0,//= <<< /))print $0} 589*23f24377SWarner Losh 590*23f24377SWarner Losh### {if(!match($0,/%=/))print $0}: 591*23f24377SWarner Loshfoo=bar 592*23f24377SWarner Loshfoo==bar 593*23f24377SWarner Loshfoo+bar 594*23f24377SWarner Loshfoo+=bar 595*23f24377SWarner Loshfoo-=bar 596*23f24377SWarner Loshfoo*=bar 597*23f24377SWarner Loshfoo/=bar 598*23f24377SWarner Loshfoo^=bar 599*23f24377SWarner Loshfoo!=bar 600*23f24377SWarner Loshfoo<=bar 601*23f24377SWarner Loshfoo>=bar 602*23f24377SWarner Loshfoo bar 603*23f24377SWarner Loshfoo/bar 604*23f24377SWarner Loshfoo=bar=fribble 605*23f24377SWarner Losh=foo=bar 606*23f24377SWarner Losh 607*23f24377SWarner Losh 608*23f24377SWarner Losh### {if(!match($0,/^=/))print $0}: 609*23f24377SWarner Loshfoo=bar 610*23f24377SWarner Loshfoo==bar 611*23f24377SWarner Loshfoo+bar 612*23f24377SWarner Loshfoo+=bar 613*23f24377SWarner Loshfoo-=bar 614*23f24377SWarner Loshfoo*=bar 615*23f24377SWarner Loshfoo/=bar 616*23f24377SWarner Loshfoo^=bar 617*23f24377SWarner Loshfoo%=bar 618*23f24377SWarner Loshfoo!=bar 619*23f24377SWarner Loshfoo<=bar 620*23f24377SWarner Loshfoo>=bar 621*23f24377SWarner Loshfoo bar 622*23f24377SWarner Loshfoo/bar 623*23f24377SWarner Loshfoo=bar=fribble 624*23f24377SWarner Losh 625*23f24377SWarner Losh 626*23f24377SWarner Losh### {if(!match($0,/\/=/))print $0}: 627*23f24377SWarner Loshfoo=bar 628*23f24377SWarner Loshfoo==bar 629*23f24377SWarner Loshfoo+bar 630*23f24377SWarner Loshfoo+=bar 631*23f24377SWarner Loshfoo-=bar 632*23f24377SWarner Loshfoo*=bar 633*23f24377SWarner Loshfoo^=bar 634*23f24377SWarner Loshfoo%=bar 635*23f24377SWarner Loshfoo!=bar 636*23f24377SWarner Loshfoo<=bar 637*23f24377SWarner Loshfoo>=bar 638*23f24377SWarner Loshfoo bar 639*23f24377SWarner Loshfoo/bar 640*23f24377SWarner Loshfoo=bar=fribble 641*23f24377SWarner Losh=foo=bar 642*23f24377SWarner Losh 643*23f24377SWarner Losh 644*23f24377SWarner Losh### {if(!match($0,/!=/))print $0}: 645*23f24377SWarner Loshfoo=bar 646*23f24377SWarner Loshfoo==bar 647*23f24377SWarner Loshfoo+bar 648*23f24377SWarner Loshfoo+=bar 649*23f24377SWarner Loshfoo-=bar 650*23f24377SWarner Loshfoo*=bar 651*23f24377SWarner Loshfoo/=bar 652*23f24377SWarner Loshfoo^=bar 653*23f24377SWarner Loshfoo%=bar 654*23f24377SWarner Loshfoo<=bar 655*23f24377SWarner Loshfoo>=bar 656*23f24377SWarner Loshfoo bar 657*23f24377SWarner Loshfoo/bar 658*23f24377SWarner Loshfoo=bar=fribble 659*23f24377SWarner Losh=foo=bar 660*23f24377SWarner Losh 661*23f24377SWarner Losh 662*23f24377SWarner Losh### {if(!match($0,/<=/))print $0}: 663*23f24377SWarner Loshfoo=bar 664*23f24377SWarner Loshfoo==bar 665*23f24377SWarner Loshfoo+bar 666*23f24377SWarner Loshfoo+=bar 667*23f24377SWarner Loshfoo-=bar 668*23f24377SWarner Loshfoo*=bar 669*23f24377SWarner Loshfoo/=bar 670*23f24377SWarner Loshfoo^=bar 671*23f24377SWarner Loshfoo%=bar 672*23f24377SWarner Loshfoo!=bar 673*23f24377SWarner Loshfoo>=bar 674*23f24377SWarner Loshfoo bar 675*23f24377SWarner Loshfoo/bar 676*23f24377SWarner Loshfoo=bar=fribble 677*23f24377SWarner Losh=foo=bar 678*23f24377SWarner Losh 679*23f24377SWarner Losh 680*23f24377SWarner Losh### {if(!match($0,/>=/))print $0}: 681*23f24377SWarner Loshfoo=bar 682*23f24377SWarner Loshfoo==bar 683*23f24377SWarner Loshfoo+bar 684*23f24377SWarner Loshfoo+=bar 685*23f24377SWarner Loshfoo-=bar 686*23f24377SWarner Loshfoo*=bar 687*23f24377SWarner Loshfoo/=bar 688*23f24377SWarner Loshfoo^=bar 689*23f24377SWarner Loshfoo%=bar 690*23f24377SWarner Loshfoo!=bar 691*23f24377SWarner Loshfoo<=bar 692*23f24377SWarner Loshfoo bar 693*23f24377SWarner Loshfoo/bar 694*23f24377SWarner Loshfoo=bar=fribble 695*23f24377SWarner Losh=foo=bar 696*23f24377SWarner Losh 697*23f24377SWarner Losh 698*23f24377SWarner Losh### {if(index($0,/=/))print $0}: 699*23f24377SWarner Losh../a.out: index() doesn't permit regular expressions at source line 1 700*23f24377SWarner Losh context is 701*23f24377SWarner Losh >>> {if(index($0,/=/) <<< 702*23f24377SWarner Losh 703*23f24377SWarner Losh### {if(index($0,/=/))print $0}: 704*23f24377SWarner Losh../a.out: index() doesn't permit regular expressions at source line 1 705*23f24377SWarner Losh context is 706*23f24377SWarner Losh >>> {if(index($0,/=/) <<< 707*23f24377SWarner Losh 708*23f24377SWarner Losh### {if(index($0,/==/))print $0}: 709*23f24377SWarner Losh../a.out: index() doesn't permit regular expressions at source line 1 710*23f24377SWarner Losh context is 711*23f24377SWarner Losh >>> {if(index($0,/==/) <<< 712*23f24377SWarner Losh 713*23f24377SWarner Losh### {if(index($0,/+=/))print $0}: 714*23f24377SWarner Losh../a.out: index() doesn't permit regular expressions at source line 1 715*23f24377SWarner Losh context is 716*23f24377SWarner Losh >>> {if(index($0,/+=/) <<< 717*23f24377SWarner Losh 718*23f24377SWarner Losh### {if(index($0,/*=/))print $0}: 719*23f24377SWarner Losh../a.out: index() doesn't permit regular expressions at source line 1 720*23f24377SWarner Losh context is 721*23f24377SWarner Losh >>> {if(index($0,/*=/) <<< 722*23f24377SWarner Losh 723*23f24377SWarner Losh### {if(index($0,/-=/))print $0}: 724*23f24377SWarner Losh../a.out: index() doesn't permit regular expressions at source line 1 725*23f24377SWarner Losh context is 726*23f24377SWarner Losh >>> {if(index($0,/-=/) <<< 727*23f24377SWarner Losh 728*23f24377SWarner Losh### {if(index($0,//=/))print $0}: 729*23f24377SWarner Losh../a.out: empty regular expression 730*23f24377SWarner Losh source line number 1 731*23f24377SWarner Losh context is 732*23f24377SWarner Losh >>> {if(index($0,//= <<< /))print $0} 733*23f24377SWarner Losh 734*23f24377SWarner Losh### {if(index($0,/%=/))print $0}: 735*23f24377SWarner Losh../a.out: index() doesn't permit regular expressions at source line 1 736*23f24377SWarner Losh context is 737*23f24377SWarner Losh >>> {if(index($0,/%=/) <<< 738*23f24377SWarner Losh 739*23f24377SWarner Losh### {if(index($0,/^=/))print $0}: 740*23f24377SWarner Losh../a.out: index() doesn't permit regular expressions at source line 1 741*23f24377SWarner Losh context is 742*23f24377SWarner Losh >>> {if(index($0,/^=/) <<< 743*23f24377SWarner Losh 744*23f24377SWarner Losh### {if(index($0,/\/=/))print $0}: 745*23f24377SWarner Losh../a.out: index() doesn't permit regular expressions at source line 1 746*23f24377SWarner Losh context is 747*23f24377SWarner Losh >>> {if(index($0,/\/=/) <<< 748*23f24377SWarner Losh 749*23f24377SWarner Losh### {if(index($0,/!=/))print $0}: 750*23f24377SWarner Losh../a.out: index() doesn't permit regular expressions at source line 1 751*23f24377SWarner Losh context is 752*23f24377SWarner Losh >>> {if(index($0,/!=/) <<< 753*23f24377SWarner Losh 754*23f24377SWarner Losh### {if(index($0,/<=/))print $0}: 755*23f24377SWarner Losh../a.out: index() doesn't permit regular expressions at source line 1 756*23f24377SWarner Losh context is 757*23f24377SWarner Losh >>> {if(index($0,/<=/) <<< 758*23f24377SWarner Losh 759*23f24377SWarner Losh### {if(index($0,/>=/))print $0}: 760*23f24377SWarner Losh../a.out: index() doesn't permit regular expressions at source line 1 761*23f24377SWarner Losh context is 762*23f24377SWarner Losh >>> {if(index($0,/>=/) <<< 763*23f24377SWarner Losh 764*23f24377SWarner Losh### {if(split($0,foo,/=/))print $0}: 765*23f24377SWarner Loshfoo=bar 766*23f24377SWarner Loshfoo==bar 767*23f24377SWarner Loshfoo+bar 768*23f24377SWarner Loshfoo+=bar 769*23f24377SWarner Loshfoo-=bar 770*23f24377SWarner Loshfoo*=bar 771*23f24377SWarner Loshfoo/=bar 772*23f24377SWarner Loshfoo^=bar 773*23f24377SWarner Loshfoo%=bar 774*23f24377SWarner Loshfoo!=bar 775*23f24377SWarner Loshfoo<=bar 776*23f24377SWarner Loshfoo>=bar 777*23f24377SWarner Loshfoo bar 778*23f24377SWarner Loshfoo/bar 779*23f24377SWarner Loshfoo=bar=fribble 780*23f24377SWarner Losh=foo=bar 781*23f24377SWarner Losh 782*23f24377SWarner Losh 783*23f24377SWarner Losh### {if(split($0,foo,/=/))print $0}: 784*23f24377SWarner Loshfoo=bar 785*23f24377SWarner Loshfoo==bar 786*23f24377SWarner Loshfoo+bar 787*23f24377SWarner Loshfoo+=bar 788*23f24377SWarner Loshfoo-=bar 789*23f24377SWarner Loshfoo*=bar 790*23f24377SWarner Loshfoo/=bar 791*23f24377SWarner Loshfoo^=bar 792*23f24377SWarner Loshfoo%=bar 793*23f24377SWarner Loshfoo!=bar 794*23f24377SWarner Loshfoo<=bar 795*23f24377SWarner Loshfoo>=bar 796*23f24377SWarner Loshfoo bar 797*23f24377SWarner Loshfoo/bar 798*23f24377SWarner Loshfoo=bar=fribble 799*23f24377SWarner Losh=foo=bar 800*23f24377SWarner Losh 801*23f24377SWarner Losh 802*23f24377SWarner Losh### {if(split($0,foo,/==/))print $0}: 803*23f24377SWarner Loshfoo=bar 804*23f24377SWarner Loshfoo==bar 805*23f24377SWarner Loshfoo+bar 806*23f24377SWarner Loshfoo+=bar 807*23f24377SWarner Loshfoo-=bar 808*23f24377SWarner Loshfoo*=bar 809*23f24377SWarner Loshfoo/=bar 810*23f24377SWarner Loshfoo^=bar 811*23f24377SWarner Loshfoo%=bar 812*23f24377SWarner Loshfoo!=bar 813*23f24377SWarner Loshfoo<=bar 814*23f24377SWarner Loshfoo>=bar 815*23f24377SWarner Loshfoo bar 816*23f24377SWarner Loshfoo/bar 817*23f24377SWarner Loshfoo=bar=fribble 818*23f24377SWarner Losh=foo=bar 819*23f24377SWarner Losh 820*23f24377SWarner Losh 821*23f24377SWarner Losh### {if(split($0,foo,/+=/))print $0}: 822*23f24377SWarner Losh../a.out: illegal primary in regular expression += at = 823*23f24377SWarner Losh source line number 1 824*23f24377SWarner Losh context is 825*23f24377SWarner Losh >>> {if(split($0,foo,/+=/) <<< 826*23f24377SWarner Losh 827*23f24377SWarner Losh### {if(split($0,foo,/*=/))print $0}: 828*23f24377SWarner Losh../a.out: illegal primary in regular expression *= at = 829*23f24377SWarner Losh source line number 1 830*23f24377SWarner Losh context is 831*23f24377SWarner Losh >>> {if(split($0,foo,/*=/) <<< 832*23f24377SWarner Losh 833*23f24377SWarner Losh### {if(split($0,foo,/-=/))print $0}: 834*23f24377SWarner Loshfoo=bar 835*23f24377SWarner Loshfoo==bar 836*23f24377SWarner Loshfoo+bar 837*23f24377SWarner Loshfoo+=bar 838*23f24377SWarner Loshfoo-=bar 839*23f24377SWarner Loshfoo*=bar 840*23f24377SWarner Loshfoo/=bar 841*23f24377SWarner Loshfoo^=bar 842*23f24377SWarner Loshfoo%=bar 843*23f24377SWarner Loshfoo!=bar 844*23f24377SWarner Loshfoo<=bar 845*23f24377SWarner Loshfoo>=bar 846*23f24377SWarner Loshfoo bar 847*23f24377SWarner Loshfoo/bar 848*23f24377SWarner Loshfoo=bar=fribble 849*23f24377SWarner Losh=foo=bar 850*23f24377SWarner Losh 851*23f24377SWarner Losh 852*23f24377SWarner Losh### {if(split($0,foo,//=/))print $0}: 853*23f24377SWarner Losh../a.out: empty regular expression 854*23f24377SWarner Losh source line number 1 855*23f24377SWarner Losh context is 856*23f24377SWarner Losh >>> {if(split($0,foo,//= <<< /))print $0} 857*23f24377SWarner Losh 858*23f24377SWarner Losh### {if(split($0,foo,/%=/))print $0}: 859*23f24377SWarner Loshfoo=bar 860*23f24377SWarner Loshfoo==bar 861*23f24377SWarner Loshfoo+bar 862*23f24377SWarner Loshfoo+=bar 863*23f24377SWarner Loshfoo-=bar 864*23f24377SWarner Loshfoo*=bar 865*23f24377SWarner Loshfoo/=bar 866*23f24377SWarner Loshfoo^=bar 867*23f24377SWarner Loshfoo%=bar 868*23f24377SWarner Loshfoo!=bar 869*23f24377SWarner Loshfoo<=bar 870*23f24377SWarner Loshfoo>=bar 871*23f24377SWarner Loshfoo bar 872*23f24377SWarner Loshfoo/bar 873*23f24377SWarner Loshfoo=bar=fribble 874*23f24377SWarner Losh=foo=bar 875*23f24377SWarner Losh 876*23f24377SWarner Losh 877*23f24377SWarner Losh### {if(split($0,foo,/^=/))print $0}: 878*23f24377SWarner Loshfoo=bar 879*23f24377SWarner Loshfoo==bar 880*23f24377SWarner Loshfoo+bar 881*23f24377SWarner Loshfoo+=bar 882*23f24377SWarner Loshfoo-=bar 883*23f24377SWarner Loshfoo*=bar 884*23f24377SWarner Loshfoo/=bar 885*23f24377SWarner Loshfoo^=bar 886*23f24377SWarner Loshfoo%=bar 887*23f24377SWarner Loshfoo!=bar 888*23f24377SWarner Loshfoo<=bar 889*23f24377SWarner Loshfoo>=bar 890*23f24377SWarner Loshfoo bar 891*23f24377SWarner Loshfoo/bar 892*23f24377SWarner Loshfoo=bar=fribble 893*23f24377SWarner Losh=foo=bar 894*23f24377SWarner Losh 895*23f24377SWarner Losh 896*23f24377SWarner Losh### {if(split($0,foo,/\/=/))print $0}: 897*23f24377SWarner Loshfoo=bar 898*23f24377SWarner Loshfoo==bar 899*23f24377SWarner Loshfoo+bar 900*23f24377SWarner Loshfoo+=bar 901*23f24377SWarner Loshfoo-=bar 902*23f24377SWarner Loshfoo*=bar 903*23f24377SWarner Loshfoo/=bar 904*23f24377SWarner Loshfoo^=bar 905*23f24377SWarner Loshfoo%=bar 906*23f24377SWarner Loshfoo!=bar 907*23f24377SWarner Loshfoo<=bar 908*23f24377SWarner Loshfoo>=bar 909*23f24377SWarner Loshfoo bar 910*23f24377SWarner Loshfoo/bar 911*23f24377SWarner Loshfoo=bar=fribble 912*23f24377SWarner Losh=foo=bar 913*23f24377SWarner Losh 914*23f24377SWarner Losh 915*23f24377SWarner Losh### {if(split($0,foo,/!=/))print $0}: 916*23f24377SWarner Loshfoo=bar 917*23f24377SWarner Loshfoo==bar 918*23f24377SWarner Loshfoo+bar 919*23f24377SWarner Loshfoo+=bar 920*23f24377SWarner Loshfoo-=bar 921*23f24377SWarner Loshfoo*=bar 922*23f24377SWarner Loshfoo/=bar 923*23f24377SWarner Loshfoo^=bar 924*23f24377SWarner Loshfoo%=bar 925*23f24377SWarner Loshfoo!=bar 926*23f24377SWarner Loshfoo<=bar 927*23f24377SWarner Loshfoo>=bar 928*23f24377SWarner Loshfoo bar 929*23f24377SWarner Loshfoo/bar 930*23f24377SWarner Loshfoo=bar=fribble 931*23f24377SWarner Losh=foo=bar 932*23f24377SWarner Losh 933*23f24377SWarner Losh 934*23f24377SWarner Losh### {if(split($0,foo,/<=/))print $0}: 935*23f24377SWarner Loshfoo=bar 936*23f24377SWarner Loshfoo==bar 937*23f24377SWarner Loshfoo+bar 938*23f24377SWarner Loshfoo+=bar 939*23f24377SWarner Loshfoo-=bar 940*23f24377SWarner Loshfoo*=bar 941*23f24377SWarner Loshfoo/=bar 942*23f24377SWarner Loshfoo^=bar 943*23f24377SWarner Loshfoo%=bar 944*23f24377SWarner Loshfoo!=bar 945*23f24377SWarner Loshfoo<=bar 946*23f24377SWarner Loshfoo>=bar 947*23f24377SWarner Loshfoo bar 948*23f24377SWarner Loshfoo/bar 949*23f24377SWarner Loshfoo=bar=fribble 950*23f24377SWarner Losh=foo=bar 951*23f24377SWarner Losh 952*23f24377SWarner Losh 953*23f24377SWarner Losh### {if(split($0,foo,/>=/))print $0}: 954*23f24377SWarner Loshfoo=bar 955*23f24377SWarner Loshfoo==bar 956*23f24377SWarner Loshfoo+bar 957*23f24377SWarner Loshfoo+=bar 958*23f24377SWarner Loshfoo-=bar 959*23f24377SWarner Loshfoo*=bar 960*23f24377SWarner Loshfoo/=bar 961*23f24377SWarner Loshfoo^=bar 962*23f24377SWarner Loshfoo%=bar 963*23f24377SWarner Loshfoo!=bar 964*23f24377SWarner Loshfoo<=bar 965*23f24377SWarner Loshfoo>=bar 966*23f24377SWarner Loshfoo bar 967*23f24377SWarner Loshfoo/bar 968*23f24377SWarner Loshfoo=bar=fribble 969*23f24377SWarner Losh=foo=bar 970*23f24377SWarner Losh 971*23f24377SWarner Losh 972*23f24377SWarner Losh### {if(sub(/=/,"#"))print $0}: 973*23f24377SWarner Loshfoo#bar 974*23f24377SWarner Loshfoo#=bar 975*23f24377SWarner Loshfoo+#bar 976*23f24377SWarner Loshfoo-#bar 977*23f24377SWarner Loshfoo*#bar 978*23f24377SWarner Loshfoo/#bar 979*23f24377SWarner Loshfoo^#bar 980*23f24377SWarner Loshfoo%#bar 981*23f24377SWarner Loshfoo!#bar 982*23f24377SWarner Loshfoo<#bar 983*23f24377SWarner Loshfoo>#bar 984*23f24377SWarner Loshfoo#bar=fribble 985*23f24377SWarner Losh#foo=bar 986*23f24377SWarner Losh 987*23f24377SWarner Losh### {if(sub(/=/,"#"))print $0}: 988*23f24377SWarner Loshfoo#bar 989*23f24377SWarner Loshfoo#=bar 990*23f24377SWarner Loshfoo+#bar 991*23f24377SWarner Loshfoo-#bar 992*23f24377SWarner Loshfoo*#bar 993*23f24377SWarner Loshfoo/#bar 994*23f24377SWarner Loshfoo^#bar 995*23f24377SWarner Loshfoo%#bar 996*23f24377SWarner Loshfoo!#bar 997*23f24377SWarner Loshfoo<#bar 998*23f24377SWarner Loshfoo>#bar 999*23f24377SWarner Loshfoo#bar=fribble 1000*23f24377SWarner Losh#foo=bar 1001*23f24377SWarner Losh 1002*23f24377SWarner Losh### {if(sub(/==/,"#"))print $0}: 1003*23f24377SWarner Loshfoo#bar 1004*23f24377SWarner Losh 1005*23f24377SWarner Losh### {if(sub(/+=/,"#"))print $0}: 1006*23f24377SWarner Losh../a.out: illegal primary in regular expression += at = 1007*23f24377SWarner Losh source line number 1 1008*23f24377SWarner Losh context is 1009*23f24377SWarner Losh >>> {if(sub(/+=/,"#") <<< 1010*23f24377SWarner Losh 1011*23f24377SWarner Losh### {if(sub(/*=/,"#"))print $0}: 1012*23f24377SWarner Losh../a.out: illegal primary in regular expression *= at = 1013*23f24377SWarner Losh source line number 1 1014*23f24377SWarner Losh context is 1015*23f24377SWarner Losh >>> {if(sub(/*=/,"#") <<< 1016*23f24377SWarner Losh 1017*23f24377SWarner Losh### {if(sub(/-=/,"#"))print $0}: 1018*23f24377SWarner Loshfoo#bar 1019*23f24377SWarner Losh 1020*23f24377SWarner Losh### {if(sub(//=/,"#"))print $0}: 1021*23f24377SWarner Losh../a.out: empty regular expression 1022*23f24377SWarner Losh source line number 1 1023*23f24377SWarner Losh context is 1024*23f24377SWarner Losh >>> {if(sub(//= <<< /,"#"))print $0} 1025*23f24377SWarner Losh 1026*23f24377SWarner Losh### {if(sub(/%=/,"#"))print $0}: 1027*23f24377SWarner Loshfoo#bar 1028*23f24377SWarner Losh 1029*23f24377SWarner Losh### {if(sub(/^=/,"#"))print $0}: 1030*23f24377SWarner Losh#foo=bar 1031*23f24377SWarner Losh 1032*23f24377SWarner Losh### {if(sub(/\/=/,"#"))print $0}: 1033*23f24377SWarner Loshfoo#bar 1034*23f24377SWarner Losh 1035*23f24377SWarner Losh### {if(sub(/!=/,"#"))print $0}: 1036*23f24377SWarner Loshfoo#bar 1037*23f24377SWarner Losh 1038*23f24377SWarner Losh### {if(sub(/<=/,"#"))print $0}: 1039*23f24377SWarner Loshfoo#bar 1040*23f24377SWarner Losh 1041*23f24377SWarner Losh### {if(sub(/>=/,"#"))print $0}: 1042*23f24377SWarner Loshfoo#bar 1043*23f24377SWarner Losh 1044*23f24377SWarner Losh### {if(gsub(/=/,"#"))print $0}: 1045*23f24377SWarner Loshfoo#bar 1046*23f24377SWarner Loshfoo##bar 1047*23f24377SWarner Loshfoo+#bar 1048*23f24377SWarner Loshfoo-#bar 1049*23f24377SWarner Loshfoo*#bar 1050*23f24377SWarner Loshfoo/#bar 1051*23f24377SWarner Loshfoo^#bar 1052*23f24377SWarner Loshfoo%#bar 1053*23f24377SWarner Loshfoo!#bar 1054*23f24377SWarner Loshfoo<#bar 1055*23f24377SWarner Loshfoo>#bar 1056*23f24377SWarner Loshfoo#bar#fribble 1057*23f24377SWarner Losh#foo#bar 1058*23f24377SWarner Losh 1059*23f24377SWarner Losh### {if(gsub(/=/,"#"))print $0}: 1060*23f24377SWarner Loshfoo#bar 1061*23f24377SWarner Loshfoo##bar 1062*23f24377SWarner Loshfoo+#bar 1063*23f24377SWarner Loshfoo-#bar 1064*23f24377SWarner Loshfoo*#bar 1065*23f24377SWarner Loshfoo/#bar 1066*23f24377SWarner Loshfoo^#bar 1067*23f24377SWarner Loshfoo%#bar 1068*23f24377SWarner Loshfoo!#bar 1069*23f24377SWarner Loshfoo<#bar 1070*23f24377SWarner Loshfoo>#bar 1071*23f24377SWarner Loshfoo#bar#fribble 1072*23f24377SWarner Losh#foo#bar 1073*23f24377SWarner Losh 1074*23f24377SWarner Losh### {if(gsub(/==/,"#"))print $0}: 1075*23f24377SWarner Loshfoo#bar 1076*23f24377SWarner Losh 1077*23f24377SWarner Losh### {if(gsub(/+=/,"#"))print $0}: 1078*23f24377SWarner Losh../a.out: illegal primary in regular expression += at = 1079*23f24377SWarner Losh source line number 1 1080*23f24377SWarner Losh context is 1081*23f24377SWarner Losh >>> {if(gsub(/+=/,"#") <<< 1082*23f24377SWarner Losh 1083*23f24377SWarner Losh### {if(gsub(/*=/,"#"))print $0}: 1084*23f24377SWarner Losh../a.out: illegal primary in regular expression *= at = 1085*23f24377SWarner Losh source line number 1 1086*23f24377SWarner Losh context is 1087*23f24377SWarner Losh >>> {if(gsub(/*=/,"#") <<< 1088*23f24377SWarner Losh 1089*23f24377SWarner Losh### {if(gsub(/-=/,"#"))print $0}: 1090*23f24377SWarner Loshfoo#bar 1091*23f24377SWarner Losh 1092*23f24377SWarner Losh### {if(gsub(//=/,"#"))print $0}: 1093*23f24377SWarner Losh../a.out: empty regular expression 1094*23f24377SWarner Losh source line number 1 1095*23f24377SWarner Losh context is 1096*23f24377SWarner Losh >>> {if(gsub(//= <<< /,"#"))print $0} 1097*23f24377SWarner Losh 1098*23f24377SWarner Losh### {if(gsub(/%=/,"#"))print $0}: 1099*23f24377SWarner Loshfoo#bar 1100*23f24377SWarner Losh 1101*23f24377SWarner Losh### {if(gsub(/^=/,"#"))print $0}: 1102*23f24377SWarner Losh#foo=bar 1103*23f24377SWarner Losh 1104*23f24377SWarner Losh### {if(gsub(/\/=/,"#"))print $0}: 1105*23f24377SWarner Loshfoo#bar 1106*23f24377SWarner Losh 1107*23f24377SWarner Losh### {if(gsub(/!=/,"#"))print $0}: 1108*23f24377SWarner Loshfoo#bar 1109*23f24377SWarner Losh 1110*23f24377SWarner Losh### {if(gsub(/<=/,"#"))print $0}: 1111*23f24377SWarner Loshfoo#bar 1112*23f24377SWarner Losh 1113*23f24377SWarner Losh### {if(gsub(/>=/,"#"))print $0}: 1114*23f24377SWarner Loshfoo#bar 1115*23f24377SWarner Losh 1116*23f24377SWarner Losh### {if(sub(/=/,"#",$0))print $0}: 1117*23f24377SWarner Loshfoo#bar 1118*23f24377SWarner Loshfoo#=bar 1119*23f24377SWarner Loshfoo+#bar 1120*23f24377SWarner Loshfoo-#bar 1121*23f24377SWarner Loshfoo*#bar 1122*23f24377SWarner Loshfoo/#bar 1123*23f24377SWarner Loshfoo^#bar 1124*23f24377SWarner Loshfoo%#bar 1125*23f24377SWarner Loshfoo!#bar 1126*23f24377SWarner Loshfoo<#bar 1127*23f24377SWarner Loshfoo>#bar 1128*23f24377SWarner Loshfoo#bar=fribble 1129*23f24377SWarner Losh#foo=bar 1130*23f24377SWarner Losh 1131*23f24377SWarner Losh### {if(sub(/=/,"#",$0))print $0}: 1132*23f24377SWarner Loshfoo#bar 1133*23f24377SWarner Loshfoo#=bar 1134*23f24377SWarner Loshfoo+#bar 1135*23f24377SWarner Loshfoo-#bar 1136*23f24377SWarner Loshfoo*#bar 1137*23f24377SWarner Loshfoo/#bar 1138*23f24377SWarner Loshfoo^#bar 1139*23f24377SWarner Loshfoo%#bar 1140*23f24377SWarner Loshfoo!#bar 1141*23f24377SWarner Loshfoo<#bar 1142*23f24377SWarner Loshfoo>#bar 1143*23f24377SWarner Loshfoo#bar=fribble 1144*23f24377SWarner Losh#foo=bar 1145*23f24377SWarner Losh 1146*23f24377SWarner Losh### {if(sub(/==/,"#",$0))print $0}: 1147*23f24377SWarner Loshfoo#bar 1148*23f24377SWarner Losh 1149*23f24377SWarner Losh### {if(sub(/+=/,"#",$0))print $0}: 1150*23f24377SWarner Losh../a.out: illegal primary in regular expression += at = 1151*23f24377SWarner Losh source line number 1 1152*23f24377SWarner Losh context is 1153*23f24377SWarner Losh >>> {if(sub(/+=/,"#",$0) <<< 1154*23f24377SWarner Losh 1155*23f24377SWarner Losh### {if(sub(/*=/,"#",$0))print $0}: 1156*23f24377SWarner Losh../a.out: illegal primary in regular expression *= at = 1157*23f24377SWarner Losh source line number 1 1158*23f24377SWarner Losh context is 1159*23f24377SWarner Losh >>> {if(sub(/*=/,"#",$0) <<< 1160*23f24377SWarner Losh 1161*23f24377SWarner Losh### {if(sub(/-=/,"#",$0))print $0}: 1162*23f24377SWarner Loshfoo#bar 1163*23f24377SWarner Losh 1164*23f24377SWarner Losh### {if(sub(//=/,"#",$0))print $0}: 1165*23f24377SWarner Losh../a.out: empty regular expression 1166*23f24377SWarner Losh source line number 1 1167*23f24377SWarner Losh context is 1168*23f24377SWarner Losh >>> {if(sub(//= <<< /,"#",$0))print $0} 1169*23f24377SWarner Losh 1170*23f24377SWarner Losh### {if(sub(/%=/,"#",$0))print $0}: 1171*23f24377SWarner Loshfoo#bar 1172*23f24377SWarner Losh 1173*23f24377SWarner Losh### {if(sub(/^=/,"#",$0))print $0}: 1174*23f24377SWarner Losh#foo=bar 1175*23f24377SWarner Losh 1176*23f24377SWarner Losh### {if(sub(/\/=/,"#",$0))print $0}: 1177*23f24377SWarner Loshfoo#bar 1178*23f24377SWarner Losh 1179*23f24377SWarner Losh### {if(sub(/!=/,"#",$0))print $0}: 1180*23f24377SWarner Loshfoo#bar 1181*23f24377SWarner Losh 1182*23f24377SWarner Losh### {if(sub(/<=/,"#",$0))print $0}: 1183*23f24377SWarner Loshfoo#bar 1184*23f24377SWarner Losh 1185*23f24377SWarner Losh### {if(sub(/>=/,"#",$0))print $0}: 1186*23f24377SWarner Loshfoo#bar 1187*23f24377SWarner Losh 1188*23f24377SWarner Losh### {if(sub(/=/,"#",$0))print $0}: 1189*23f24377SWarner Loshfoo#bar 1190*23f24377SWarner Loshfoo#=bar 1191*23f24377SWarner Loshfoo+#bar 1192*23f24377SWarner Loshfoo-#bar 1193*23f24377SWarner Loshfoo*#bar 1194*23f24377SWarner Loshfoo/#bar 1195*23f24377SWarner Loshfoo^#bar 1196*23f24377SWarner Loshfoo%#bar 1197*23f24377SWarner Loshfoo!#bar 1198*23f24377SWarner Loshfoo<#bar 1199*23f24377SWarner Loshfoo>#bar 1200*23f24377SWarner Loshfoo#bar=fribble 1201*23f24377SWarner Losh#foo=bar 1202*23f24377SWarner Losh 1203*23f24377SWarner Losh### {if(gsub(/=/,"#",$0))print $0}: 1204*23f24377SWarner Loshfoo#bar 1205*23f24377SWarner Loshfoo##bar 1206*23f24377SWarner Loshfoo+#bar 1207*23f24377SWarner Loshfoo-#bar 1208*23f24377SWarner Loshfoo*#bar 1209*23f24377SWarner Loshfoo/#bar 1210*23f24377SWarner Loshfoo^#bar 1211*23f24377SWarner Loshfoo%#bar 1212*23f24377SWarner Loshfoo!#bar 1213*23f24377SWarner Loshfoo<#bar 1214*23f24377SWarner Loshfoo>#bar 1215*23f24377SWarner Loshfoo#bar#fribble 1216*23f24377SWarner Losh#foo#bar 1217*23f24377SWarner Losh 1218*23f24377SWarner Losh### {if(gsub(/==/,"#",$0))print $0}: 1219*23f24377SWarner Loshfoo#bar 1220*23f24377SWarner Losh 1221*23f24377SWarner Losh### {if(gsub(/+=/,"#",$0))print $0}: 1222*23f24377SWarner Losh../a.out: illegal primary in regular expression += at = 1223*23f24377SWarner Losh source line number 1 1224*23f24377SWarner Losh context is 1225*23f24377SWarner Losh >>> {if(gsub(/+=/,"#",$0) <<< 1226*23f24377SWarner Losh 1227*23f24377SWarner Losh### {if(gsub(/*=/,"#",$0))print $0}: 1228*23f24377SWarner Losh../a.out: illegal primary in regular expression *= at = 1229*23f24377SWarner Losh source line number 1 1230*23f24377SWarner Losh context is 1231*23f24377SWarner Losh >>> {if(gsub(/*=/,"#",$0) <<< 1232*23f24377SWarner Losh 1233*23f24377SWarner Losh### {if(gsub(/-=/,"#",$0))print $0}: 1234*23f24377SWarner Loshfoo#bar 1235*23f24377SWarner Losh 1236*23f24377SWarner Losh### {if(gsub(//=/,"#",$0))print $0}: 1237*23f24377SWarner Losh../a.out: empty regular expression 1238*23f24377SWarner Losh source line number 1 1239*23f24377SWarner Losh context is 1240*23f24377SWarner Losh >>> {if(gsub(//= <<< /,"#",$0))print $0} 1241*23f24377SWarner Losh 1242*23f24377SWarner Losh### {if(gsub(/%=/,"#",$0))print $0}: 1243*23f24377SWarner Loshfoo#bar 1244*23f24377SWarner Losh 1245*23f24377SWarner Losh### {if(gsub(/^=/,"#",$0))print $0}: 1246*23f24377SWarner Losh#foo=bar 1247*23f24377SWarner Losh 1248*23f24377SWarner Losh### {if(gsub(/\/=/,"#",$0))print $0}: 1249*23f24377SWarner Loshfoo#bar 1250*23f24377SWarner Losh 1251*23f24377SWarner Losh### {if(gsub(/!=/,"#",$0))print $0}: 1252*23f24377SWarner Loshfoo#bar 1253*23f24377SWarner Losh 1254*23f24377SWarner Losh### {if(gsub(/<=/,"#",$0))print $0}: 1255*23f24377SWarner Loshfoo#bar 1256*23f24377SWarner Losh 1257*23f24377SWarner Losh### {if(gsub(/>=/,"#",$0))print $0}: 1258*23f24377SWarner Loshfoo#bar 1259