The R Project SVN R

Rev

Rev 39826 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 39826 Rev 42973
Line 13... Line 13...
13
character(2^30+1)
13
character(2^30+1)
14
vector("list", 2^30+2)
14
vector("list", 2^30+2)
15
}
15
}
16
 
16
 
17
getenv("USER") # should produce correct error message.
17
getenv("USER") # should produce correct error message.
-
 
18
 
-
 
19
## bad infinite recursion / on.exit / ... interactions
-
 
20
bar <- function() 1+1
-
 
21
foo <- function() { on.exit(bar()); foo() }
-
 
22
foo() # now simple "infinite recursion"