Keybase proof
I hereby claim:
- I am cbkiyanda on github.
- I am cbkiyanda (https://keybase.io/cbkiyanda) on keybase.
- I have a public key whose fingerprint is BE89 E802 6A23 4F1F AF57 CA5C C28E 37FD 0CDD 8F9C
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
program test | |
type :: a_t | |
integer, pointer :: i => null() | |
class(a_t), pointer :: second => null() | |
end type a_t | |
class(a_t), pointer :: a, b | |
nullify(a, b) |
program testprogram | |
real, pointer :: x | |
x => getptr() | |
write(*,*) associated(x), x | |
x = 1.0 | |
write(*,*) associated(x), x | |
deallocate(x) |